Fix build with SDK 8.1 or more (replace #include <ShlObj_core.h> supported only with Windows SDK10 by #include <ShlObj.h> support by Windows SDK 8.1 or more)

This commit is contained in:
bvernoux 2021-04-16 19:40:12 +02:00
parent 098f09844b
commit 0b9d5c2b69

View File

@ -6,7 +6,7 @@
#ifdef _WIN32
#include <Windows.h>
#include <ShlObj_core.h>
#include <ShlObj.h>
#include <thread>
#endif