|
From: Brendon C. <br...@ch...> - 2006-03-18 01:28:59
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 > Actually this should be defined in the common header file for the > product. MinGW supports Windows OS versions back to Windows98 and we > set the default value of _WIN32_WINNT to the earliest version we > support. If you don't wish to support earlier versions of Windows OS > then you need to redefine your lowest supported version before including > windows.h. > Thanks for the help. It seems that the problem was that I was defining: #define _WIN32_WINNT WindowsXP in the config.h file, but at that point WindowsXP was not yet defined to 0x0501. So i just changed it to: #define _WIN32_WINNT 0x0501 in the config.h file (I had previously tried adding this define line in the wrong place and windows.h was being included before this define was taking place. Thanks again for the help. Brendon. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (MingW32) iD8DBQFEG2JJLSWCuZeiyS0RAgoLAKCcdF4YKkn8z/DblJ2XC1vTafw0dwCgikpX X6CPzPsUHZwxnYSZ+HuGU9Y= =OaEk -----END PGP SIGNATURE----- |