We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef96364 commit 604a677Copy full SHA for 604a677
Shared/sdk/SharedUtil.Misc.h
@@ -22,6 +22,15 @@
22
#include "SharedUtil.Defines.h"
23
#include "SharedUtil.Map.h"
24
25
+#ifdef WIN32
26
+// Forward declare basic windows types to avoid including windows.h here
27
+struct HWND__;
28
+ #ifndef _WINDOWS_
29
+typedef HWND__* HWND;
30
+typedef unsigned int UINT;
31
+ #endif
32
+#endif
33
+
34
namespace SharedUtil
35
{
36
class CArgMap;
@@ -1718,3 +1727,4 @@ using namespace SharedUtil;
1718
1727
//
1719
1728
typedef void(FUNC_GetMtaVersion)(char* pBuffer, uint uiMaxSize);
1720
1729
MTAEXPORT void GetLibMtaVersion(char* pBuffer, uint uiMaxSize);
1730
0 commit comments