summaryrefslogtreecommitdiffstats
path: root/src/core/common.h
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2021-01-18 21:59:16 +0100
committerNikolay Korolev <nickvnuk@gmail.com>2021-01-18 21:59:16 +0100
commitef59c623fd3ab492ccc8826d21d93fc4be825257 (patch)
treeb68bb54324eaef4bbb14868413cde00245576859 /src/core/common.h
parentfix (diff)
parentwrong ifdef (diff)
downloadre3-ef59c623fd3ab492ccc8826d21d93fc4be825257.tar
re3-ef59c623fd3ab492ccc8826d21d93fc4be825257.tar.gz
re3-ef59c623fd3ab492ccc8826d21d93fc4be825257.tar.bz2
re3-ef59c623fd3ab492ccc8826d21d93fc4be825257.tar.lz
re3-ef59c623fd3ab492ccc8826d21d93fc4be825257.tar.xz
re3-ef59c623fd3ab492ccc8826d21d93fc4be825257.tar.zst
re3-ef59c623fd3ab492ccc8826d21d93fc4be825257.zip
Diffstat (limited to 'src/core/common.h')
-rw-r--r--src/core/common.h43
1 files changed, 28 insertions, 15 deletions
diff --git a/src/core/common.h b/src/core/common.h
index 9253a465..d7facfd1 100644
--- a/src/core/common.h
+++ b/src/core/common.h
@@ -11,17 +11,34 @@
#include <string.h>
#include <math.h>
-#if defined _WIN32 && defined WITHWINDOWS
-#include <windows.h>
+#if !defined RW_D3D9 && defined LIBRW
+#undef WITHD3D
+#undef WITHDINPUT
+#endif
+
+#if (defined WITHD3D && !defined LIBRW)
+#define WITHWINDOWS
#endif
-#if defined _WIN32 && defined WITHD3D
+#if defined _WIN32 && defined WITHWINDOWS && !defined _INC_WINDOWS
#include <windows.h>
-#ifndef USE_D3D9
-#include <d3d8types.h>
-#else
-#include <d3d9types.h>
#endif
+
+#ifdef WITHD3D
+ #ifdef LIBRW
+ #define WITH_D3D // librw includes d3d9 itself via this right now
+ #else
+ #ifndef USE_D3D9
+ #include <d3d8.h>
+ #else
+ #include <d3d9.h>
+ #endif
+ #endif
+#endif
+
+#ifdef WITHDINPUT
+#define DIRECTINPUT_VERSION 0x0800
+#include <dinput.h>
#endif
#include <rwcore.h>
@@ -52,14 +69,6 @@
#define rwVENDORID_ROCKSTAR 0x0253F2
-// Get rid of bullshit windows definitions, we're not running on an 8086
-#ifdef far
-#undef far
-#endif
-#ifdef near
-#undef near
-#endif
-
#define Max(a,b) ((a) > (b) ? (a) : (b))
#define Min(a,b) ((a) < (b) ? (a) : (b))
@@ -79,6 +88,10 @@ typedef int64_t int64;
// hardcode ucs-2
typedef uint16_t wchar;
+typedef uint8 bool8;
+typedef uint16 bool16;
+typedef uint32 bool32;
+
#if defined(_MSC_VER)
typedef ptrdiff_t ssize_t;
#endif