home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / netwatch / version.h < prev   
C/C++ Source or Header  |  1995-06-13  |  2KB  |  72 lines

  1. /****************************************************************************
  2.  *                                                                          *
  3.  *      VERSION.H        -- Version information                             *
  4.  *                                                                          *
  5.  ****************************************************************************/
  6.  
  7. #define rmj         3
  8. #define rmm         51
  9. #define rup         0
  10. #define szVerName   ""
  11. #define szVerUser   "MIKESART"
  12.  
  13. #ifndef VS_FF_DEBUG 
  14. /* ver.h defines constants needed by the VS_VERSION_INFO structure */
  15. #ifdef WIN32
  16. #include <winver.h>
  17. #else
  18. #include <ver.h> 
  19. #endif
  20. #endif 
  21.  
  22. #define VERSION                     "3.51"
  23. #define VER_PRODUCTVERSION_STR      "3.51\0"
  24. #define VER_PRODUCTVERSION          rmj,rmm,0,rup
  25.  
  26. /*--------------------------------------------------------------*/
  27. /* the following section defines values used in the version     */
  28. /* data structure for all files, and which do not change.       */
  29. /*--------------------------------------------------------------*/
  30.  
  31. /* default is nodebug */
  32. #ifndef DEBUG
  33. #define VER_DEBUG                   0
  34. #else
  35. #define VER_DEBUG                   VS_FF_DEBUG
  36. #endif
  37.  
  38. /* default is privatebuild */
  39. #ifndef OFFICIAL
  40. #define VER_PRIVATEBUILD            VS_FF_PRIVATEBUILD
  41. #else
  42. #define VER_PRIVATEBUILD            0
  43. #endif
  44.  
  45. /* default is prerelease */
  46. #ifndef FINAL
  47. #define VER_PRERELEASE              VS_FF_PRERELEASE
  48. #else
  49. #define VER_PRERELEASE              0
  50. #endif
  51.  
  52. #ifdef DLL
  53. #define VER_FILETYPE                VFT_DLL
  54. #else
  55. #define VER_FILETYPE                VFT_APP
  56. #endif
  57. #define VER_FILESUBTYPE             VFT_UNKNOWN
  58.  
  59. #define VER_FILEFLAGSMASK           VS_FFI_FILEFLAGSMASK
  60. #ifdef WIN32
  61. #define VER_FILEOS                  VOS_NT_WINDOWS32
  62. #else
  63. #define VER_FILEOS                  VOS_DOS_WINDOWS16
  64. #endif
  65. #define VER_FILEFLAGS               (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
  66.  
  67. #define VER_LEGALCOPYRIGHT_YEARS    "1991-1995"
  68. #define VER_COMPANYNAME_STR         "Microsoft Corporation\0"
  69. #define VER_PRODUCTNAME_STR         "Microsoft\256 Windows(TM) NT Operating System\0"
  70. #define VER_LEGALTRADEMARKS_STR     \
  71. "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation.\0"
  72.