VERSION.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

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