Firstly, this is a fantastic library and I am grateful for what you have created.
I just thought I would point it out that if you are trying to compile for older (legacy) version of windows you will get errors.
The lowest version of windows you the library works against is Windows 7
#define WINVER 0x0601
#define _WIN32_WINNT 0x0601
If you go to Windows XP or below you run into issues.
#define WINVER 0x0501
#define _WIN32_WINNT 0x0501
For example, RegGetValueW is not available.
This should be exceedingly rare, but you may want to consider which Windows Registry functions are available based on the WINVER & _WIN32_WINNT definition.
Firstly, this is a fantastic library and I am grateful for what you have created.
I just thought I would point it out that if you are trying to compile for older (legacy) version of windows you will get errors.
The lowest version of windows you the library works against is Windows 7
#define WINVER 0x0601
#define _WIN32_WINNT 0x0601
If you go to Windows XP or below you run into issues.
#define WINVER 0x0501
#define _WIN32_WINNT 0x0501
For example,
RegGetValueWis not available.This should be exceedingly rare, but you may want to consider which Windows Registry functions are available based on the WINVER & _WIN32_WINNT definition.