home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / comctl / reitp / preinc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-20  |  707 b   |  50 lines

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