home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / sdk / win32s / setup / bldcui / bldver.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-11  |  1.3 KB  |  34 lines

  1.  
  2. #define  VERSION    "2.01.0023"
  3. #define  BUILDDATE  "March 6, 1992"
  4.  
  5. #ifdef DEBUG
  6. #define  STFABOUTMSG  "Microsoft Setup\n\nMarch 6, 1992\nVersion 2.01.0023 - Debug\n\nCopyright (C) 1991, 1992 Microsoft Corporation."
  7. #else  /* !DEBUG */
  8. #define  STFABOUTMSG  "Microsoft Setup\n\nMarch 6, 1992\nVersion 2.01.0023\n\nCopyright (C) 1991, 1992 Microsoft Corporation."
  9. #endif /* !DEBUG */
  10.  
  11.  
  12.  
  13. #ifdef RC_INVOKED
  14.  
  15. #include <ver.h>
  16.  
  17. #define VER_FILEVERSION_STR      "2.0\0"
  18. #define VER_FILEVERSION          2,1,0,23
  19.  
  20. #define VER_PRODUCTNAME_STR      "Microsoft Setup for Windows\0"
  21. #define VER_COMPANYNAME_STR      "Microsoft Corporation\0"
  22. #define VER_LEGALTRADEMARKS_STR  "Microsoft\256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation\0"
  23. #define VER_LEGALCOPYRIGHT_STR   "Copyright \251 Microsoft Corp. 1991, 1992\0"
  24. #define VER_PRODUCTVERSION_STR   "2.0\0"
  25. #define VER_PRODUCTVERSION       2,1,0,23
  26. #define VER_COMMENT_STR          "Windows Setup Toolkit (Poof)\0"
  27. #define VER_FILETYPE             VFT_DLL
  28. #define VER_FILESUBTYPE          0
  29. #define VER_FILEFLAGSMASK        VS_FFI_FILEFLAGSMASK
  30. #define VER_FILEFLAGS            0L
  31. #define VER_FILEOS               VOS_DOS_WINDOWS16
  32.  
  33. #endif // RC_INVOKED
  34.