mirror of
https://github.com/soukoku/ntwain.git
synced 2026-01-09 11:21:06 +08:00
Fix wrong enum type for ICAP_AUTOSIZE.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<PropertyGroup>
|
||||
<!--change these in each release-->
|
||||
<VersionPrefix>4.0.0.0</VersionPrefix>
|
||||
<VersionSuffix>alpha.23</VersionSuffix>
|
||||
<VersionSuffix>alpha.24</VersionSuffix>
|
||||
|
||||
<!--keep it the same until major # changes-->
|
||||
<AssemblyVersion>4.0.0.0</AssemblyVersion>
|
||||
|
||||
@@ -41,8 +41,8 @@ namespace NTwain.Caps
|
||||
public CapWriter<TW_BOOL> ICAP_AUTOMATICROTATE => _icap_automaticrotate ??= new(_twain, CAP.ICAP_AUTOMATICROTATE, 1.8f);
|
||||
|
||||
|
||||
CapWriter<TW_BOOL>? _icap_autosize;
|
||||
public CapWriter<TW_BOOL> ICAP_AUTOSIZE => _icap_autosize ??= new(_twain, CAP.ICAP_AUTOSIZE, 2);
|
||||
CapWriter<TWAS>? _icap_autosize;
|
||||
public CapWriter<TWAS> ICAP_AUTOSIZE => _icap_autosize ??= new(_twain, CAP.ICAP_AUTOSIZE, 2);
|
||||
|
||||
|
||||
CapWriter<TW_BOOL>? _icap_barcodedetectionenabled;
|
||||
|
||||
Reference in New Issue
Block a user