More cleanup for v1.

This commit is contained in:
soukoku
2014-04-22 06:50:58 -04:00
parent 31f77edb40
commit 108fde6fe7
24 changed files with 272 additions and 158 deletions

View File

@@ -0,0 +1,21 @@
namespace NTwain
{
/// <summary>
/// Indicates how the source should be enabled in a TWAIN session.
/// </summary>
public enum SourceEnableMode
{
/// <summary>
/// Start acquiring without driver UI.
/// </summary>
NoUI,
/// <summary>
/// Start acquiring with driver UI.
/// </summary>
ShowUI,
/// <summary>
/// Show driver UI for settings change but no acquisition.
/// </summary>
ShowUIOnly
}
}