diff options
author | Earnie Boyd <earnie@users.sf.net> | 2003-07-01 12:01:05 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2003-07-01 12:01:05 +0000 |
commit | b8582a99b5ed3061e0a40e66db58d90f9dcc9259 (patch) | |
tree | 12a063cafcb5213714dad62d1992edf88202056c /winsup/w32api/include/w32api.h | |
parent | 88112d1d6557edb94890cf0832248186bcb7c15f (diff) | |
download | cygnal-b8582a99b5ed3061e0a40e66db58d90f9dcc9259.tar.gz cygnal-b8582a99b5ed3061e0a40e66db58d90f9dcc9259.tar.bz2 cygnal-b8582a99b5ed3061e0a40e66db58d90f9dcc9259.zip |
* include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
_IE3, _IE4, _IE5, _IE6): Add definitions.
* include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
>= Win98.
Change existing guards to use the above macro names as appropriate.
Diffstat (limited to 'winsup/w32api/include/w32api.h')
-rw-r--r-- | winsup/w32api/include/w32api.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/winsup/w32api/include/w32api.h b/winsup/w32api/include/w32api.h index d509c1890..90edfd98d 100644 --- a/winsup/w32api/include/w32api.h +++ b/winsup/w32api/include/w32api.h @@ -8,4 +8,17 @@ #define __W32API_MAJOR_VERSION 2 #define __W32API_MINOR_VERSION 4 +#define _NT4 0x0400 +#define _W98 0x0410 +#define _WME 0x0490 +#define _NT5 0x0500 +#define _W2000 0x0500 +#define _WXP 0x0501 +#define _W2003 0x502 + +#define _IE3 0x0300 +#define _IE4 0x0401 +#define _IE5 0x0501 +#define _IE6 0x0600 + #endif /* ndef _W32API_H_ */ |