7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-02 00:26:45 +00:00

Build on MSYS2: use shobjidl.h, instead of shobjidl_core.h

shobjidl_core.h is not available on mingw
This commit is contained in:
jean-pierre charras 2025-01-16 09:57:31 +01:00
parent 337ec6d862
commit 2a143a63e5

View File

@ -30,7 +30,11 @@
#include <Windows.h>
#include <shellapi.h>
#include <shlwapi.h>
#include <shobjidl_core.h>
#if defined( __MINGW32__ )
#include <shobjidl.h>
#else
#include <shobjidl_core.h>
#endif
#include <winhttp.h>
#include <Softpub.h>