* include/windef.h (WINVER): Add documentation.
(_WIN32_WINNT): Ditto. Special thanks to Paul Schmidt <paul@tricattechnologies.com>
This commit is contained in:
parent
218b7a5638
commit
de3387b304
|
@ -1,3 +1,9 @@
|
||||||
|
2002-09-07 Earnie Boyd <earnie@users.sf.net>
|
||||||
|
|
||||||
|
* include/windef.h (WINVER): Add documentation.
|
||||||
|
(_WIN32_WINNT): Ditto.
|
||||||
|
Special thanks to Paul Schmidt <paul@tricattechnologies.com>
|
||||||
|
|
||||||
2002-09-06 Danny Smith <dannysmith@users.sourceforge.net>
|
2002-09-06 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
|
* lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
|
||||||
|
|
|
@ -10,9 +10,20 @@ extern "C" {
|
||||||
|
|
||||||
#ifndef WINVER
|
#ifndef WINVER
|
||||||
#define WINVER 0x0400
|
#define WINVER 0x0400
|
||||||
|
/*
|
||||||
|
* If you need Win32 API features newer the Win95 and WinNT then you must
|
||||||
|
* define WINVER before including windows.h or any other method of including
|
||||||
|
* the windef.h header.
|
||||||
|
*/
|
||||||
#endif
|
#endif
|
||||||
#ifndef _WIN32_WINNT
|
#ifndef _WIN32_WINNT
|
||||||
#define _WIN32_WINNT WINVER
|
#define _WIN32_WINNT WINVER
|
||||||
|
/*
|
||||||
|
* There may be the need to define _WIN32_WINNT to a value different from
|
||||||
|
* the value of WINVER. I don't have any example of why you would do that.
|
||||||
|
* However, if you must then define _WIN32_WINNT to the value required before
|
||||||
|
* including windows.h or any other method of including the windef.h header.
|
||||||
|
*/
|
||||||
#endif
|
#endif
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
#define WIN32
|
#define WIN32
|
||||||
|
|
Loading…
Reference in New Issue