1 | /* $Id: versionos2.h,v 1.5 1999-12-28 19:17:09 sandervl Exp $ */
|
---|
2 |
|
---|
3 | #ifndef __VERSIONOS2__H__
|
---|
4 | #define __VERSIONOS2__H__
|
---|
5 |
|
---|
6 | /*PLF
|
---|
7 | *
|
---|
8 | * PE2LX_VERSION is an internal version number used to verify that the
|
---|
9 | * dll's are a matched set. It doesn't have to be related at all to the
|
---|
10 | * "version number of the product" we advertise to users.
|
---|
11 | *
|
---|
12 | * Each time a structural change in pe2lx.exe causes previous dll's to
|
---|
13 | * be incompatible (for example, when Sander removed the "OS2" prefix
|
---|
14 | * from all exported names), this constant should be incremented.
|
---|
15 | *
|
---|
16 | * The value is currently stored as a four byte EA (so the range is that
|
---|
17 | * of an unsigned long).
|
---|
18 | *
|
---|
19 | *
|
---|
20 | */
|
---|
21 | #define PE2LX_VERSION 4
|
---|
22 |
|
---|
23 | #ifndef SYSTEM
|
---|
24 | #define SYSTEM _System
|
---|
25 | #endif
|
---|
26 |
|
---|
27 | //in kernel32.dll/wprocess.cpp, used by version.dll
|
---|
28 | BOOL SYSTEM GetVersionStruct(char *modname, char *verstruct, ULONG bufLength);
|
---|
29 | ULONG SYSTEM GetVersionSize(char *modname);
|
---|
30 |
|
---|
31 | //Used by GetVersion and GetProcessVersion
|
---|
32 | #define WIN32OS2_VERSION (4)
|
---|
33 |
|
---|
34 | #define ODINNT_VERSION 4 //returned by GetVersion
|
---|
35 |
|
---|
36 | //Used by GetVersionEx:
|
---|
37 | #define ODINNT_MAJOR_VERSION 4
|
---|
38 | #define ODINNT_MINOR_VERSION 0
|
---|
39 | #define ODINNT_BUILD_NR 1381
|
---|
40 | #define ODINNT_CSDVERSION "Service Pack 3"
|
---|
41 | #define ODINNT_CSDVERSION_W (LPWSTR)L"Service Pack 3"
|
---|
42 | #define ODINNT_SOFTWARE_TYPE "SYSTEM"
|
---|
43 | #define ODINNT_OSTYPE_UNI "Uniprocessor Free"
|
---|
44 | #define ODINNT_OSTYPE_SMP "SMPprocessor Free" //??
|
---|
45 |
|
---|
46 | #endif
|
---|