2014-04-18 07:11:11 +08:00
|
|
|
|
using NTwain.Data;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Runtime.InteropServices;
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
|
|
|
|
namespace NTwain.Triplets
|
|
|
|
|
{
|
2014-04-12 19:10:56 +08:00
|
|
|
|
static partial class Dsm
|
2014-04-06 20:51:41 +08:00
|
|
|
|
{
|
2014-04-12 11:16:33 +08:00
|
|
|
|
static partial class NativeMethods
|
|
|
|
|
{
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
ref IntPtr data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
ref DataGroups data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWAudioInfo data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWCapability data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWCustomDSData data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWDeviceEvent data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWCallback data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWCallback2 data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWEntryPoint data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWEvent data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWFileSystem data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
IntPtr zero,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWIdentity data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWPassThru data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWPendingXfers data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWSetupFileXfer data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWSetupMemXfer data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWStatusUtf8 data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWUserInterface data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWCieColor data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWExtImageInfo data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWFilter data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWGrayResponse data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWImageInfo data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWImageLayout data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWImageMemXfer data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWJpegCompression data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWPalette8 data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWRgbResponse data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
[In, Out]TWStatus data);
|
2014-04-06 20:51:41 +08:00
|
|
|
|
|
2014-04-20 09:02:44 +08:00
|
|
|
|
[DllImport("/usr/local/lib/libtwaindsm.so", EntryPoint = "DSM_Entry")]
|
2014-04-12 19:10:56 +08:00
|
|
|
|
public static extern ReturnCode DsmLinux(
|
2014-04-12 11:16:33 +08:00
|
|
|
|
[In, Out]TWIdentity origin,
|
|
|
|
|
[In, Out]TWIdentity destination,
|
|
|
|
|
DataGroups dg,
|
|
|
|
|
DataArgumentType dat,
|
|
|
|
|
Message msg,
|
|
|
|
|
ref TWMemory data);
|
|
|
|
|
}
|
2014-04-06 20:51:41 +08:00
|
|
|
|
}
|
|
|
|
|
}
|