|
|
1.1 root 1: /****************************************************************************
2: * *
3: * VERSION.H -- Version information *
4: * *
5: ****************************************************************************/
6:
7: #define rmj 1
8: #define rmm 0
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 "1.0"
23: #define VER_PRODUCTVERSION_STR "1.00\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-1992"
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"
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.