Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.0 KiB

  1. Simple WIA scanning appliction (Microsoft QuickScan 1.0a)
  2. SUMMARY
  3. =======
  4. The WIA sample Acquires images using a WIA scanner driver installed on the system.
  5. MORE INFORMATION
  6. ================
  7. The following information describes the WIA sample.
  8. To Compile MSQSCAN
  9. -----------------------------
  10. To compile an ANSI debug version of the sample for Windows NT and Windows 95,
  11. use the following command:
  12. nmake
  13. To compile a Unicode debug version of the sample for Windows NT only, use the
  14. following command:
  15. nmake dev=win32 HOST=NT
  16. To compile a 16-bit debug version of the sample and if your development
  17. environment is Win 3.x, use the following command. If your development
  18. environment is Win95 or NT, change the HOST appropriately.
  19. nmake dev=win16 HOST=DOS
  20. To clean up between builds which use different options, use one of the
  21. following commands:
  22. nmake clean
  23. nmake dev=win16 clean
  24. See the makefile header comments for other make options.
  25. If the build tools cannot find SDKUTIL.LIB, use the SAMPLES\COM\COMMON sample
  26. to build SDKUTIL.LIB.
  27. include <win32.mak>
  28. To Run MSQSCAN
  29. -------------
  30. - execute the msqscan.exe file.
  31. - Select a WIA device to use.
  32. - Select "Acquire" from the application dialog.
  33. MSQSCAN Files
  34. ------------
  35. CWIA.CPP and CWIA.H contain helper functions that are used to
  36. create and operate a WIA device.
  37. MSQSCAN.CPP contains the application framework.
  38. MSQSCANDLG.CPP and MSQSCANDLG.H contain the dialog functionality of the main application.
  39. MSQSCAN.RC and RESOURCE.H contain resources used by MSQSCAN.EXE
  40. PROGRESSDLG.CPP and PROGRESSDLG.H contain the progress dialog for data transfers.
  41. UITABLES.CPP and UITABLES.H contain tables that are used for UI constants defined by MSQSCAN.EXE
  42. ADFDLG.CPP and ADFDLG.H contain Document feeder UI for settings.
  43. PREVIEW.H and PREVIEW.CPP contain the preview window source.
  44. MAKEFILE is the makefile for the project.