mirror of
https://github.com/soukoku/ntwain.git
synced 2025-11-24 08:47:06 +08:00
Fix ICAP_SKEWANGLE value type to int.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<PropertyGroup>
|
||||
<!--change these in each release-->
|
||||
<VersionPrefix>4.0.0.0</VersionPrefix>
|
||||
<VersionSuffix>alpha.15</VersionSuffix>
|
||||
<VersionSuffix>alpha.16</VersionSuffix>
|
||||
|
||||
<!--keep it the same until major # changes-->
|
||||
<AssemblyVersion>4.0.0.0</AssemblyVersion>
|
||||
|
||||
@@ -239,8 +239,8 @@ partial class KdsCaps
|
||||
_ICAP_DOCUMENTTYPE ??= new(_twain, (CAP)KDS_CAP.ICAP_DOCUMENTTYPE, 2);
|
||||
|
||||
|
||||
CapWriter<ushort>? _ICAP_SKEWANGLE;
|
||||
public CapWriter<ushort> ICAP_SKEWANGLE =>
|
||||
CapWriter<int>? _ICAP_SKEWANGLE;
|
||||
public CapWriter<int> ICAP_SKEWANGLE =>
|
||||
_ICAP_SKEWANGLE ??= new(_twain, (CAP)KDS_CAP.ICAP_SKEWANGLE, 2);
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user