├── .gitattributes ├── README.md ├── Twain_App_OutputErr.cpp ├── dll ├── TWAIN.dll └── TWAINDSM.dll ├── docs └── TWAIN-2.3-Specification.pdf ├── friendly interface ├── TwainApp.cpp ├── TwainApp.h ├── TwainAppCMD.cpp ├── TwainAppCMD.h ├── TwainApp_ui.cpp └── TwainApp_ui.h ├── interface ├── DSMInterface.cpp ├── DSMInterface.h └── twain.h ├── source └── twain_layout.jpg ├── twaintest_src ├── ChildFrm.cpp ├── ChildFrm.h ├── DIB.cpp ├── DIB.h ├── InputDlg.cpp ├── InputDlg.h ├── MainFrm.cpp ├── MainFrm.h ├── TwainCpp.cpp ├── TwainCpp.h ├── TwainSpec.txt ├── twain.h ├── twaintest.cpp ├── twaintest.h ├── twaintestDoc.cpp ├── twaintestDoc.h ├── twaintestView.cpp └── twaintestView.h └── usb demo ├── USBTest.cpp └── USBTest.h /.gitattributes: -------------------------------------------------------------------------------- 1 | *.h linguist-language=c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/README.md -------------------------------------------------------------------------------- /Twain_App_OutputErr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/Twain_App_OutputErr.cpp -------------------------------------------------------------------------------- /dll/TWAIN.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/dll/TWAIN.dll -------------------------------------------------------------------------------- /dll/TWAINDSM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/dll/TWAINDSM.dll -------------------------------------------------------------------------------- /docs/TWAIN-2.3-Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/docs/TWAIN-2.3-Specification.pdf -------------------------------------------------------------------------------- /friendly interface/TwainApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/friendly interface/TwainApp.cpp -------------------------------------------------------------------------------- /friendly interface/TwainApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/friendly interface/TwainApp.h -------------------------------------------------------------------------------- /friendly interface/TwainAppCMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/friendly interface/TwainAppCMD.cpp -------------------------------------------------------------------------------- /friendly interface/TwainAppCMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/friendly interface/TwainAppCMD.h -------------------------------------------------------------------------------- /friendly interface/TwainApp_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/friendly interface/TwainApp_ui.cpp -------------------------------------------------------------------------------- /friendly interface/TwainApp_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/friendly interface/TwainApp_ui.h -------------------------------------------------------------------------------- /interface/DSMInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/interface/DSMInterface.cpp -------------------------------------------------------------------------------- /interface/DSMInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/interface/DSMInterface.h -------------------------------------------------------------------------------- /interface/twain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/interface/twain.h -------------------------------------------------------------------------------- /source/twain_layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/source/twain_layout.jpg -------------------------------------------------------------------------------- /twaintest_src/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/ChildFrm.cpp -------------------------------------------------------------------------------- /twaintest_src/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/ChildFrm.h -------------------------------------------------------------------------------- /twaintest_src/DIB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/DIB.cpp -------------------------------------------------------------------------------- /twaintest_src/DIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/DIB.h -------------------------------------------------------------------------------- /twaintest_src/InputDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/InputDlg.cpp -------------------------------------------------------------------------------- /twaintest_src/InputDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/InputDlg.h -------------------------------------------------------------------------------- /twaintest_src/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/MainFrm.cpp -------------------------------------------------------------------------------- /twaintest_src/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/MainFrm.h -------------------------------------------------------------------------------- /twaintest_src/TwainCpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/TwainCpp.cpp -------------------------------------------------------------------------------- /twaintest_src/TwainCpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/TwainCpp.h -------------------------------------------------------------------------------- /twaintest_src/TwainSpec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/TwainSpec.txt -------------------------------------------------------------------------------- /twaintest_src/twain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twain.h -------------------------------------------------------------------------------- /twaintest_src/twaintest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twaintest.cpp -------------------------------------------------------------------------------- /twaintest_src/twaintest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twaintest.h -------------------------------------------------------------------------------- /twaintest_src/twaintestDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twaintestDoc.cpp -------------------------------------------------------------------------------- /twaintest_src/twaintestDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twaintestDoc.h -------------------------------------------------------------------------------- /twaintest_src/twaintestView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twaintestView.cpp -------------------------------------------------------------------------------- /twaintest_src/twaintestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/twaintest_src/twaintestView.h -------------------------------------------------------------------------------- /usb demo/USBTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/usb demo/USBTest.cpp -------------------------------------------------------------------------------- /usb demo/USBTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrlitong/TWAIN-SDK/HEAD/usb demo/USBTest.h --------------------------------------------------------------------------------