Some name-breaking changes so master is now v3. V2 will continue to be the code on nuget for now.

This commit is contained in:
soukoku
2014-09-15 07:24:13 -04:00
parent 0cd02ac16e
commit 92063d2b84
62 changed files with 422 additions and 267 deletions

View File

@@ -40,7 +40,7 @@ namespace NTwain.Data
/// <summary>
/// The don't care value.
/// </summary>
DontCare = TwainConst.DontCare16,
DoNotCare = TwainConst.DoNotCare16,
}
/// <summary>
@@ -2044,7 +2044,7 @@ namespace NTwain.Data
/// Corresponds to TWQC_*.
/// </summary>
[Flags]
public enum QuerySupport
public enum QuerySupports
{
None = 0,
Get = 0x1,
@@ -2120,15 +2120,15 @@ namespace NTwain.Data
/// <summary>
/// Don't care value for 8 bit types.
/// </summary>
public const byte DontCare8 = 0xff;
public const byte DoNotCare8 = 0xff;
/// <summary>
/// Don't care value for 16 bit types.
/// </summary>
public const ushort DontCare16 = 0xffff;
public const ushort DoNotCare16 = 0xffff;
/// <summary>
/// Don't care value for 32 bit types.
/// </summary>
public const uint DontCare32 = 0xffffffff;
public const uint DoNotCare32 = 0xffffffff;
/// <summary>
/// The major version number of TWAIN supported by this library.