More types.

This commit is contained in:
soukoku 2014-04-02 21:47:33 -04:00
parent 2565ac21e1
commit 7b066e4922
2 changed files with 47 additions and 0 deletions

View File

@ -541,4 +541,28 @@ namespace NTwain.Data
public delegate void MemUnlockDelegate(IntPtr handle);
}
[StructLayout(LayoutKind.Sequential, Pack = 2)]
partial struct TWFilterDescriptor
{
TW_UINT32 _size;
TW_UINT32 _hueStart;
TW_UINT32 _hueEnd;
TW_UINT32 _saturationStart;
TW_UINT32 _saturationEnd;
TW_UINT32 _valueStart;
TW_UINT32 _valueEnd;
TW_UINT32 _replacement;
}
[StructLayout(LayoutKind.Sequential, Pack = 2)]
partial class TWFilter
{
TW_UINT32 _size;
TW_UINT32 _descriptorCount;
TW_UINT32 _maxDescriptorCount;
TW_UINT32 _condition;
TW_HANDLE _hDescriptors;
}
}

View File

@ -2372,4 +2372,27 @@ namespace NTwain.Data
public MemUnlockDelegate UnlockFunction { get { return _dSM_MemUnlock; } }
}
public partial struct TWFilterDescriptor
{
public UInt32 Size { get { return _size; } set { _size = value; } }
public UInt32 HueStart { get { return _hueStart; } set { _hueStart = value; } }
public UInt32 HueEnd { get { return _hueEnd; } set { _hueEnd = value; } }
public UInt32 SaturationStart { get { return _saturationStart; } set { _saturationStart = value; } }
public UInt32 SaturationEnd { get { return _saturationEnd; } set { _saturationEnd = value; } }
public UInt32 ValueStart { get { return _valueStart; } set { _valueStart = value; } }
public UInt32 ValueEnd { get { return _valueEnd; } set { _valueEnd = value; } }
public UInt32 Replacement { get { return _replacement; } set { _replacement = value; } }
}
public partial class TWFilter
{
public UInt32 Size { get { return _size; } set { _size = value; } }
public UInt32 DescriptorCount { get { return _descriptorCount; } set { _descriptorCount = value; } }
public UInt32 MaxDescriptorCount { get { return _maxDescriptorCount; } set { _maxDescriptorCount = value; } }
public UInt32 Condition { get { return _condition; } set { _condition = value; } }
public IntPtr hDescriptors { get { return _hDescriptors; } set { _hDescriptors = value; } }
}
}