summaryrefslogtreecommitdiffstats
path: root/src/skel/win/win.h
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2020-04-21 12:28:06 +0200
committereray orçunus <erayorcunus@gmail.com>2020-04-22 04:24:02 +0200
commitc80403a2e0aa337968d77f5d4bcc33cdc91eeac1 (patch)
tree76408ff0065d0d72a5cd02774a91b50abe3bf025 /src/skel/win/win.h
parentlibrw skin pipe (diff)
downloadre3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.tar
re3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.tar.gz
re3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.tar.bz2
re3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.tar.lz
re3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.tar.xz
re3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.tar.zst
re3-c80403a2e0aa337968d77f5d4bcc33cdc91eeac1.zip
Diffstat (limited to '')
-rw-r--r--src/skel/win/win.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/skel/win/win.h b/src/skel/win/win.h
index ca16c4a0..d6326294 100644
--- a/src/skel/win/win.h
+++ b/src/skel/win/win.h
@@ -5,6 +5,11 @@
#define RSREGSETBREAKALLOC(_name) /* No op */
#endif /* (!defined(RSREGSETBREAKALLOC)) */
+#ifndef _INC_WINDOWS
+#define _X86_
+#include <windef.h>
+#endif
+
enum eGameState
{
GS_START_UP = 0,
@@ -17,7 +22,9 @@ enum eGameState
GS_FRONTEND,
GS_INIT_PLAYING_GAME,
GS_PLAYING_GAME,
+#ifndef MASTER
GS_ANIMVIEWER,
+#endif
};
enum eWinVersion
@@ -33,6 +40,7 @@ extern DWORD _dwOperatingSystemVersion;
extern RwUInt32 gGameState;
+#ifdef __DINPUT_INCLUDED__
/* platform specfic global data */
typedef struct
{
@@ -86,6 +94,7 @@ public:
};
extern CJoySticks AllValidWinJoys;
+#endif
#ifdef __cplusplus
extern "C"
@@ -97,6 +106,7 @@ MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam);
RwBool IsForegroundApp();
+#ifdef __DINPUT_INCLUDED__
HRESULT _InputInitialise();
HRESULT _InputInitialiseMouse();
HRESULT CapturePad(RwInt32 padID);
@@ -110,6 +120,7 @@ BOOL _InputTranslateKey(RsKeyCodes *rs, UINT flag, UINT key);
void _InputTranslateShiftKeyUpDown(RsKeyCodes *rs);;
BOOL _InputTranslateShiftKey(RsKeyCodes *rs, UINT key, BOOLEAN bDown);
BOOL _InputIsExtended(INT flag);
+#endif
void InitialiseLanguage();
RwBool _psSetVideoMode(RwInt32 subSystem, RwInt32 videoMode);