Source code of Windows XP (NT5)
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.

27 lines
440 B

  1. #ifndef _STDAFX_H
  2. #define _STDAFX_H
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // Windows Header Files:
  7. #include <windows.h>
  8. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  9. // C RunTime Header Files
  10. #include <stdlib.h>
  11. #include <malloc.h>
  12. #include <memory.h>
  13. #include <tchar.h>
  14. #include <stdio.h>
  15. #include "tools.h"
  16. #include "wia.h"
  17. #ifndef STRICT
  18. #define WNDPROC FARPROC
  19. #endif
  20. #endif