VERSION.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:
Windows编程
开发平台:
Visual C++
- /****************************************************************************
- * *
- * VERSION.H -- Version information *
- * *
- ****************************************************************************/
- #define rmj 3
- #define rmm 51
- #define rup 0
- #define szVerName ""
- #define szVerUser "MIKESART"
- #ifndef VS_FF_DEBUG
- /* ver.h defines constants needed by the VS_VERSION_INFO structure */
- #ifdef WIN32
- #include <winver.h>
- #else
- #include <ver.h>
- #endif
- #endif
- #define VERSION "3.51"
- #define VER_PRODUCTVERSION_STR "3.51 "
- #define VER_PRODUCTVERSION rmj,rmm,0,rup
- /*--------------------------------------------------------------*/
- /* the following section defines values used in the version */
- /* data structure for all files, and which do not change. */
- /*--------------------------------------------------------------*/
- /* default is nodebug */
- #ifndef DEBUG
- #define VER_DEBUG 0
- #else
- #define VER_DEBUG VS_FF_DEBUG
- #endif
- /* default is privatebuild */
- #ifndef OFFICIAL
- #define VER_PRIVATEBUILD VS_FF_PRIVATEBUILD
- #else
- #define VER_PRIVATEBUILD 0
- #endif
- /* default is prerelease */
- #ifndef FINAL
- #define VER_PRERELEASE VS_FF_PRERELEASE
- #else
- #define VER_PRERELEASE 0
- #endif
- #ifdef DLL
- #define VER_FILETYPE VFT_DLL
- #else
- #define VER_FILETYPE VFT_APP
- #endif
- #define VER_FILESUBTYPE VFT_UNKNOWN
- #define VER_FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
- #ifdef WIN32
- #define VER_FILEOS VOS_NT_WINDOWS32
- #else
- #define VER_FILEOS VOS_DOS_WINDOWS16
- #endif
- #define VER_FILEFLAGS (VER_PRIVATEBUILD|VER_PRERELEASE|VER_DEBUG)
- #define VER_LEGALCOPYRIGHT_YEARS "1991-1995"
- #define VER_COMPANYNAME_STR "Microsoft Corporation "
- #define VER_PRODUCTNAME_STR "Microsoft256 Windows(TM) NT Operating System "
- #define VER_LEGALTRADEMARKS_STR
- "Microsoft256 is a registered trademark of Microsoft Corporation. Windows(TM) is a trademark of Microsoft Corporation. "