2004-11-18 Earnie Boyd <earnie@users.sf.net>

* include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
This commit is contained in:
Earnie Boyd 2004-11-18 13:53:20 +00:00
parent d26eb2a13b
commit 43b9a723cc
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2004-11-18 Earnie Boyd <earnie@users.sf.net>
* include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
2004-11-13 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (SHGFP_TYPE): Add enum.

View file

@ -126,7 +126,7 @@ typedef struct _INPUT_RECORD {
} INPUT_RECORD,*PINPUT_RECORD;
BOOL WINAPI AllocConsole(void);
#if (_WIN32_WINNT >= 0x05001)
#if (_WIN32_WINNT >= 0x0500)
BOOL WINAPI AttachConsole(DWORD);
#endif
HANDLE WINAPI CreateConsoleScreenBuffer(DWORD,DWORD,CONST SECURITY_ATTRIBUTES*,DWORD,LPVOID);