home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Internet 2000 May / MICD_2000_05.iso / CBuilder5 / INSTALL / DATA1.CAB / Program_Built_Files / Include / winresrc.h < prev    next >
C/C++ Source or Header  |  2000-02-01  |  703b  |  46 lines

  1. /*++
  2.  
  3. Copyright (c) 1990-1999  Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     winresrc.h
  8.  
  9. Abstract:
  10.  
  11.     This module defines the 32-Bit Windows resource codes.
  12.  
  13. Revision History:
  14.  
  15. --*/
  16.  
  17. #ifndef _WINRESRC_
  18. #pragma option push -b -a8 -pc -A- /*P_O_Push*/
  19. #define _WINRESRC_
  20.  
  21. #ifndef WINVER
  22. #define WINVER 0x0500
  23. #endif
  24.  
  25. #ifndef _WIN32_IE
  26. #define _WIN32_IE 0x0501
  27. #endif
  28.  
  29. #ifndef _WIN32_WINDOWS
  30. #define _WIN32_WINDOWS 0x0410
  31. #endif
  32.  
  33. #ifndef _WIN32_WINNT
  34. #define _WIN32_WINNT 0x0500
  35. #endif
  36.  
  37. #include <winuser.rh>
  38. #include <commctrl.rh>
  39. #include <dde.rh>
  40. #include <winnt.rh>
  41. #include <dlgs.h>
  42. #include <winver.h>
  43.  
  44. #pragma option pop /*P_O_Pop*/
  45. #endif /* _WINRESRC_ */
  46.