home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / ckypch.h < prev    next >
C/C++ Source or Header  |  1997-10-25  |  742b  |  39 lines

  1. // force strict type checking
  2. #define STRICT
  3.  
  4. // disable rarely-used sections of Windows
  5. #define WIN32_LEAN_AND_MEAN
  6. #define NOMCX
  7. #define NOIME
  8. #define NOSOUND
  9. #define NOCOMM
  10. #define NOKANJI
  11. #define NORPC
  12. #define NOPROXYSTUB
  13. #define NOIMAGE
  14. #define NOTAPE
  15.  
  16. // Needed by AspAssertHandler in debug.cpp
  17. // #define _WIN32_WINNT 0x400
  18.  
  19. #include <windows.h>
  20. #include <httpfilt.h>
  21.  
  22. #include <crtdbg.h>
  23. #include <tchar.h>
  24. #include <limits.h>
  25. #include <malloc.h>
  26. #include <stdio.h>
  27. #include <stdarg.h>
  28. #include <string.h>
  29.  
  30. // disable warning messages about truncating extremly long identifiers
  31. #pragma warning (disable : 4786)
  32. #include <string>
  33. #include <set>
  34. #include <map>
  35. #include <vector>
  36. #include <stack>
  37.  
  38.  
  39.