home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / v9t9 / linux / sources / V9t9 / Resources / winres.h < prev   
Encoding:
C/C++ Source or Header  |  2006-10-19  |  1.1 KB  |  50 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1997 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. // winres.h - Windows resource definitions
  12. //  extracted from WINUSER.H and COMMCTRL.H
  13.  
  14. #ifdef _AFX_MINREBUILD
  15. #pragma component(minrebuild, off)
  16. #endif
  17.  
  18. #define VS_VERSION_INFO     1
  19.  
  20. #ifdef APSTUDIO_INVOKED
  21. #define APSTUDIO_HIDDEN_SYMBOLS // Ignore following symbols
  22. #endif
  23.  
  24. #ifndef WINVER
  25. #define WINVER 0x0400   // default to Windows Version 4.0
  26. #endif
  27.  
  28. #include <winresrc.h>
  29.  
  30. #ifdef _MAC
  31. #define DS_WINDOWSUI    0x8000L
  32. #endif
  33.  
  34. // operation messages sent to DLGINIT
  35. #define LB_ADDSTRING    (WM_USER+1)
  36. #define CB_ADDSTRING    (WM_USER+3)
  37.  
  38. #ifdef APSTUDIO_INVOKED
  39. #undef APSTUDIO_HIDDEN_SYMBOLS
  40. #endif
  41.  
  42. #ifdef IDC_STATIC
  43. #undef IDC_STATIC
  44. #endif
  45. #define IDC_STATIC      (-1)
  46.  
  47. #ifdef _AFX_MINREBUILD
  48. #pragma component(minrebuild, on)
  49. #endif
  50.