PREINC.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * PREINC.H
  3.  *
  4.  * DGreen
  5.  */
  6. #ifdef DEBUG
  7. // define MEMCHECK to enable memory checking code
  8. #define MEMCHECK
  9. #endif
  10. #ifdef MEMCHECK
  11. // define INSTRUMENT_MEMMAN here to enable memory manager statistics
  12. //#define INSTRUMENT_MEMMAN
  13. #endif
  14. #define BEGIN_CODESPACE_DATA data_seg(".text")
  15. #define END_CODESPACE_DATA data_seg()
  16. #ifdef DEBUG
  17. #define MINTEST
  18. #endif
  19. #define LOCAL
  20. #ifdef DLL
  21. #define _DLL
  22. #endif
  23. #ifdef UNICODE
  24. #define _UNICODE
  25. #endif
  26. #define DOSWIN32
  27. #define STRICT
  28. #define _INC_OLE
  29. #define NOSHELLDEBUG //disables asserts in shell.h
  30. #define MAPI_DIM
  31. #ifdef DBCS
  32. #define DBCS_EDIT RICHEDIT_CLASS
  33. #else
  34. #define DBCS_EDIT "Edit"
  35. #endif