* include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.

This commit is contained in:
Earnie Boyd 2002-09-03 16:25:54 +00:00
parent 4a311951a5
commit 20fb0cc513
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-09-03 Earnie Boyd <earnie@users.sf.net>
* include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
2002-08-30 Christopher January <ccj00@doc.ic.ac.uk>
* include/wincon.h: Define GetConsoleWindow(void).

View File

@ -132,7 +132,9 @@ UINT WINAPI GetConsoleOutputCP(void);
BOOL WINAPI GetConsoleScreenBufferInfo(HANDLE,PCONSOLE_SCREEN_BUFFER_INFO);
DWORD WINAPI GetConsoleTitleA(LPSTR,DWORD);
DWORD WINAPI GetConsoleTitleW(LPWSTR,DWORD);
#if (_WIN32_WINNT >= 0x0500)
HWND WINAPI GetConsoleWindow(void);
#endif
COORD WINAPI GetLargestConsoleWindowSize(HANDLE);
BOOL WINAPI GetNumberOfConsoleInputEvents(HANDLE,PDWORD);
BOOL WINAPI GetNumberOfConsoleMouseButtons(PDWORD);