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

* include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
	Changed it twice due to inconsistent MSDN documentation.
This commit is contained in:
Earnie Boyd 2004-11-18 13:57:06 +00:00
parent 43b9a723cc
commit 24984fcb45
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
2004-11-18 Earnie Boyd <earnie@users.sf.net>
* include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
Changed it twice due to inconsistent MSDN documentation.
2004-11-13 Danny Smith <dannysmith@users.sourceforge.net>

View File

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