mirror of
https://github.com/yuzu-emu/discord-rpc.git
synced 2024-12-22 23:15:32 +00:00
Add a comment explaining WINVER macros for MinGW
This commit is contained in:
parent
f22f299330
commit
cfd6470946
|
@ -1,3 +1,9 @@
|
|||
/*
|
||||
* MinGW defaults to WINNT 5.1 (aka XP), however some of functions used here
|
||||
* require WINNT >= 6.0 APIs, which are only visible when WINVER and
|
||||
* _WIN32_WINNT defines are set properly before including any system headers.
|
||||
* Such API is e.g. RegSetKeyValueW.
|
||||
*/
|
||||
#ifdef __MINGW32__
|
||||
// 0x0600 == vista
|
||||
#define WINVER 0x0600
|
||||
|
|
Loading…
Reference in a new issue