OSDN Git Service

2004-11-18 Earnie Boyd <earnie@users.sf.net>
authorearnie <earnie>
Thu, 18 Nov 2004 13:57:05 +0000 (13:57 +0000)
committerearnie <earnie>
Thu, 18 Nov 2004 13:57:05 +0000 (13:57 +0000)
* include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
Changed it twice due to inconsistent MSDN documentation.

winsup/w32api/ChangeLog
winsup/w32api/include/wincon.h

index 12d89ba..9ee753c 100644 (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>
 
index 5ef09d4..541e5ef 100644 (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);