gitextract_1n84szq5/ ├── .gitignore ├── README.md ├── releases/ │ ├── makerelease.bat │ ├── twain-cs_02041000/ │ │ ├── TWAIN CS.rtf │ │ ├── twaincscert/ │ │ │ ├── AnyCPU/ │ │ │ │ ├── Debug/ │ │ │ │ │ └── twaincscert.exe.config │ │ │ │ └── Release/ │ │ │ │ └── twaincscert.exe.config │ │ │ ├── x64/ │ │ │ │ ├── Debug/ │ │ │ │ │ └── twaincscert.exe.config │ │ │ │ └── Release/ │ │ │ │ └── twaincscert.exe.config │ │ │ └── x86/ │ │ │ ├── Debug/ │ │ │ │ └── twaincscert.exe.config │ │ │ └── Release/ │ │ │ └── twaincscert.exe.config │ │ ├── twaincsscan/ │ │ │ ├── AnyCPU/ │ │ │ │ ├── Debug/ │ │ │ │ │ └── twaincsscan.exe.config │ │ │ │ └── Release/ │ │ │ │ └── twaincsscan.exe.config │ │ │ ├── x64/ │ │ │ │ ├── Debug/ │ │ │ │ │ └── twaincsscan.exe.config │ │ │ │ └── Release/ │ │ │ │ └── twaincsscan.exe.config │ │ │ └── x86/ │ │ │ ├── Debug/ │ │ │ │ └── twaincsscan.exe.config │ │ │ └── Release/ │ │ │ └── twaincsscan.exe.config │ │ └── twaincstst/ │ │ ├── AnyCPU/ │ │ │ ├── Debug/ │ │ │ │ └── twaincstst.exe.config │ │ │ └── Release/ │ │ │ └── twaincstst.exe.config │ │ ├── x64/ │ │ │ ├── Debug/ │ │ │ │ └── twaincstst.exe.config │ │ │ └── Release/ │ │ │ └── twaincstst.exe.config │ │ └── x86/ │ │ ├── Debug/ │ │ │ └── twaincstst.exe.config │ │ └── Release/ │ │ └── twaincstst.exe.config │ └── twain-cs_02041100/ │ ├── TWAIN CS.rtf │ ├── twaincscert/ │ │ ├── AnyCPU/ │ │ │ ├── Debug/ │ │ │ │ └── twaincscert.exe.config │ │ │ └── Release/ │ │ │ └── twaincscert.exe.config │ │ ├── x64/ │ │ │ ├── Debug/ │ │ │ │ └── twaincscert.exe.config │ │ │ └── Release/ │ │ │ └── twaincscert.exe.config │ │ └── x86/ │ │ ├── Debug/ │ │ │ └── twaincscert.exe.config │ │ └── Release/ │ │ └── twaincscert.exe.config │ ├── twaincsscan/ │ │ ├── AnyCPU/ │ │ │ ├── Debug/ │ │ │ │ └── twaincsscan.exe.config │ │ │ └── Release/ │ │ │ └── twaincsscan.exe.config │ │ ├── x64/ │ │ │ ├── Debug/ │ │ │ │ └── twaincsscan.exe.config │ │ │ └── Release/ │ │ │ └── twaincsscan.exe.config │ │ └── x86/ │ │ ├── Debug/ │ │ │ └── twaincsscan.exe.config │ │ └── Release/ │ │ └── twaincsscan.exe.config │ └── twaincstst/ │ ├── AnyCPU/ │ │ ├── Debug/ │ │ │ └── twaincstst.exe.config │ │ └── Release/ │ │ └── twaincstst.exe.config │ ├── x64/ │ │ ├── Debug/ │ │ │ └── twaincstst.exe.config │ │ └── Release/ │ │ └── twaincstst.exe.config │ └── x86/ │ ├── Debug/ │ │ └── twaincstst.exe.config │ └── Release/ │ └── twaincstst.exe.config └── twaincs/ └── source/ ├── Properties/ │ └── AssemblyInfo.cs ├── TWAIN CS.rtf ├── TWAIN.cs ├── TWAINH.cs ├── twaincs.csproj ├── twaincs.sln ├── twaincscert/ │ └── source/ │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ ├── FormMain.resx │ ├── MsBuildAL1073WarningWorkaround.targets │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ ├── data/ │ │ ├── certification/ │ │ │ ├── 010 - TWAIN Standard Capability Tests/ │ │ │ │ ├── CAP_SUPPORTEDCAPS.tc │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_CAPABILITY.tc │ │ │ │ ├── ICAP_PIXELTYPE.tc │ │ │ │ └── ICAP_XFERMECH.tc │ │ │ ├── 020 - Vendor Custom Capability Tests/ │ │ │ │ ├── Certification.tc │ │ │ │ └── DAT_CAPABILITY.tc │ │ │ ├── 030 - Status Return Tests/ │ │ │ │ ├── Certification.tc │ │ │ │ └── Status Return Tests.tc │ │ │ ├── 040 - Stress Tests/ │ │ │ │ └── Certification.tc │ │ │ ├── 050 - Non-UI Image Transfer Tests/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ └── DAT_IMAGENATIVEXFER.tc │ │ │ ├── 060 - UI Image Transfer Tests/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ └── DAT_IMAGENATIVEXFER.tc │ │ │ ├── 070 - CAP_XFERCOUNT Tests/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ └── DAT_IMAGENATIVEXFER.tc │ │ │ ├── 080 - Version Tests/ │ │ │ │ ├── Certification.tc │ │ │ │ └── DAT_IMAGEMEMXFER.tc │ │ │ ├── 090 - Verify Values for MSG_OPENDS, MSG_RESET, and MSG_RESETALL/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── MSG_OPENDS.tc │ │ │ │ ├── MSG_RESET.tc │ │ │ │ └── MSG_RESETALL.tc │ │ │ ├── 100 - TWAIN Direct Badge/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_EXTIMAGEINFO.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ └── TWAIN Direct Badge.tc │ │ │ ├── 110 - Printing Badge/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_EXTIMAGEINFO.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ ├── DAT_IMAGENATIVEXFER.tc │ │ │ │ ├── Printing Badge.tc │ │ │ │ └── SetCapabilities.tc │ │ │ ├── 120 - Patch Code Badge/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_EXTIMAGEINFO.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ ├── DAT_IMAGENATIVEXFER.tc │ │ │ │ ├── Patch Code Badge.tc │ │ │ │ ├── SetCapabilities.tc │ │ │ │ └── _README.txt │ │ │ ├── 130 - Barcode Badge/ │ │ │ │ ├── Barcode Badge.tc │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_EXTIMAGEINFO.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ ├── DAT_IMAGENATIVEXFER.tc │ │ │ │ └── SetCapabilities.tc │ │ │ ├── 140 - Image Address Badge/ │ │ │ │ ├── Certification.tc │ │ │ │ ├── DAT_EXTIMAGEINFO.tc │ │ │ │ ├── DAT_IMAGEFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMFILEXFER.tc │ │ │ │ ├── DAT_IMAGEMEMXFER.tc │ │ │ │ ├── DAT_IMAGENATIVEXFER.tc │ │ │ │ ├── Image Address Badge.tc │ │ │ │ └── SetCapabilities.tc │ │ │ ├── Certification.tc │ │ │ ├── Closeds.tc │ │ │ ├── LoadTables.tc │ │ │ ├── Opends.tc │ │ │ └── __README.md │ │ ├── scripts/ │ │ │ ├── LoadTables.tc │ │ │ ├── __README.md │ │ │ ├── cap_supportedcaps.tc │ │ │ ├── capget.tc │ │ │ ├── close.tc │ │ │ ├── copybytes.tc │ │ │ ├── datget.tc │ │ │ ├── extimageinfo.tc │ │ │ ├── list.tc │ │ │ ├── open.tc │ │ │ ├── scanfile.tc │ │ │ ├── scanmemfile.tc │ │ │ ├── scanmemory.tc │ │ │ └── scannative.tc │ │ └── twaincscert.appdata.installed.txt │ ├── terminal.cs │ ├── twaincscert.csproj │ └── version.bat ├── twaincsscan/ │ └── source/ │ ├── FormScan.Designer.cs │ ├── FormScan.cs │ ├── FormScan.resx │ ├── FormSelect.Designer.cs │ ├── FormSelect.cs │ ├── FormSelect.resx │ ├── FormSetup.Designer.cs │ ├── FormSetup.cs │ ├── FormSetup.resx │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ └── twaincsscan.csproj └── twaincstst/ └── source/ ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── Program.cs ├── Properties/ │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── Settings1.Designer.cs ├── app.config └── twaincstst.csproj