mirror of
https://github.com/reactos/reactos.git
synced 2025-04-03 20:21:17 +00:00
[KERNEL32:CONSOLE] Explicitly use _WIN32_WINNT_VISTA.
This commit is contained in:
parent
19596768cb
commit
98b58df2bf
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
|
||||
/* PUBLIC FUNCTIONS ***********************************************************/
|
||||
|
||||
#if _WIN32_WINNT >= 0x600
|
||||
#if (_WIN32_WINNT >= _WIN32_WINNT_VISTA)
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
|
@ -163,6 +163,6 @@ GetCurrentConsoleFontEx(IN HANDLE hConsoleOutput,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // (_WIN32_WINNT >= _WIN32_WINNT_VISTA)
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Reference in a new issue