diff options
author | eray orçunus <erayorcunus@gmail.com> | 2020-07-24 19:43:51 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2020-07-24 20:35:04 +0200 |
commit | 15918feb8eca09c38d7a40d67cca10cecc4affdc (patch) | |
tree | 61826572f6be8a55658a8e8e5fc73b57bf5c6c64 /src/skel/win/win.h | |
parent | Add ps2 audio paths (diff) | |
download | re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.tar re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.tar.gz re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.tar.bz2 re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.tar.lz re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.tar.xz re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.tar.zst re3-15918feb8eca09c38d7a40d67cca10cecc4affdc.zip |
Diffstat (limited to '')
-rw-r--r-- | src/skel/win/win.h | 25 |
1 files changed, 2 insertions, 23 deletions
diff --git a/src/skel/win/win.h b/src/skel/win/win.h index d19c4e0e..4b2001f8 100644 --- a/src/skel/win/win.h +++ b/src/skel/win/win.h @@ -1,5 +1,5 @@ -// DON'T include directly. crossplatform.h includes this if you're on Windows. +// DON'T include directly. crossplatform.h includes this if you're using D3D9 backend(win.cpp). #if (!defined(_PLATFORM_WIN_H)) #define _PLATFORM_WIN_H @@ -8,25 +8,6 @@ #define RSREGSETBREAKALLOC(_name) /* No op */ #endif /* (!defined(RSREGSETBREAKALLOC)) */ -#ifndef _INC_WINDOWS - #ifdef _WIN64 - #define _AMD64_ - #else - #define _X86_ - #endif - #include <windef.h> -#endif - -enum eWinVersion -{ - OS_WIN95 = 0, - OS_WIN98, - OS_WINNT, - OS_WIN2000, - OS_WINXP, -}; - - #ifdef __DINPUT_INCLUDED__ /* platform specfic global data */ typedef struct @@ -87,14 +68,12 @@ extern "C" { #endif /* __cplusplus */ -#ifdef __DINPUT_INCLUDED__ extern LRESULT CALLBACK MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam); +#ifdef __DINPUT_INCLUDED__ HRESULT _InputInitialise(); -HRESULT _InputInitialiseMouse(); HRESULT CapturePad(RwInt32 padID); -void _InputInitialiseJoys(); void _InputAddJoyStick(LPDIRECTINPUTDEVICE8 lpDevice, INT num); HRESULT _InputAddJoys(); HRESULT _InputGetMouseState(DIMOUSESTATE2 *state); |