[KERNEL32:CONSOLE] Explicitly use _WIN32_WINNT_VISTA.

This commit is contained in:
Hermès Bélusca-Maïto 2020-02-29 19:55:52 +01:00
parent 19596768cb
commit 98b58df2bf
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -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 */