Ignore:
Timestamp:
Jan 16, 2003, 4:20:54 PM (23 years ago)
Author:
sandervl
Message:

PF: Changes for building ntdll with GCC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/winbase.h

    r9631 r9683  
    12611261DECL_WINELIB_TYPE_AW(LPOSVERSIONINFOEX)
    12621262
    1263 #define VER_PLATFORM_WIN32s             0
    1264 #define VER_PLATFORM_WIN32_WINDOWS      1
    1265 #define VER_PLATFORM_WIN32_NT           2
     1263#define VER_SET_CONDITION(_m_,_t_,_c_) ((_m_)=VerSetConditionMask((_m_),(_t_),(_c_)))
     1264
     1265#define VER_PLATFORM_WIN32s                     0
     1266#define VER_PLATFORM_WIN32_WINDOWS              1
     1267#define VER_PLATFORM_WIN32_NT                   2
     1268
     1269#define VER_MINORVERSION                        0x00000001
     1270#define VER_MAJORVERSION                        0x00000002
     1271#define VER_BUILDNUMBER                         0x00000004
     1272#define VER_PLATFORMID                          0x00000008
     1273#define VER_SERVICEPACKMINOR                    0x00000010
     1274#define VER_SERVICEPACKMAJOR                    0x00000020
     1275#define VER_SUITENAME                           0x00000040
     1276#define VER_PRODUCT_TYPE                        0x00000080
     1277
     1278#define VER_NT_WORKSTATION                      1
     1279#define VER_NT_DOMAIN_CONTROLLER                2
     1280#define VER_NT_SERVER                           3
     1281
     1282#define VER_SUITE_SMALLBUSINESS                 0x00000001
     1283#define VER_SUITE_ENTERPRISE                    0x00000002
     1284#define VER_SUITE_BACKOFFICE                    0x00000004
     1285#define VER_SUITE_COMMUNICATIONS                0x00000008
     1286#define VER_SUITE_TERMINAL                      0x00000010
     1287#define VER_SUITE_SMALLBUSINESS_RESTRICTED      0x00000020
     1288#define VER_SUITE_EMBEDDEDNT                    0x00000040
     1289#define VER_SUITE_DATACENTER                    0x00000080
     1290#define VER_SUITE_SINGLEUSERTS                  0x00000100
     1291#define VER_SUITE_PERSONAL                      0x00000200
     1292
     1293#define VER_EQUAL                               1
     1294#define VER_GREATER                             2
     1295#define VER_GREATER_EQUAL                       3
     1296#define VER_LESS                                4
     1297#define VER_LESS_EQUAL                          5
     1298#define VER_AND                                 6
     1299#define VER_OR                                  7
    12661300
    12671301typedef struct _COMMPROP {
Note: See TracChangeset for help on using the changeset viewer.