mirror of
https://github.com/soukoku/ntwain.git
synced 2025-09-19 10:08:00 +08:00
12 lines
235 B
C#
12 lines
235 B
C#
namespace NTwain.Values
|
|
{
|
|
static class QuerySupportMask
|
|
{
|
|
public const int Get = 0x1;
|
|
public const int Set = 0x2;
|
|
public const int GetDefault = 0x4;
|
|
public const int GetCurrent = 0x8;
|
|
public const int Reset = 0x10;
|
|
}
|
|
}
|