chore: fix missing windows header for bridgelib.

bridgelib was moved from bridge-gui to bridgepp project, and windows.h is not auto-included anymore (only Qt core is in the pre-compiled headers).
This commit is contained in:
Xavier Michelon
2023-02-22 20:29:16 +01:00
parent 265af2d299
commit 8534da98ea

View File

@ -47,6 +47,7 @@ void (*deleteCStringFunc)(char *) = nullptr; ///< A pointer to the deleteCString
#if defined(Q_OS_WINDOWS)
#include <windows.h>
typedef HINSTANCE LibHandle;
#else
typedef void *LibHandle;