From 8d83d3791dce8517eee89cfa7be15025ace2eaa2 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Thu, 11 Jun 2009 22:17:50 +0000 Subject: [PATCH] - Added tagRAWINPUT declaration to i_input.h for support of older Windows SDKs. SVN r1666 (trunk) --- src/win32/i_input.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/win32/i_input.h b/src/win32/i_input.h index 09b110fb85..fda5c8ff61 100644 --- a/src/win32/i_input.h +++ b/src/win32/i_input.h @@ -57,13 +57,15 @@ extern void DI_EnumJoy (); #ifdef USE_WINDOWS_DWORD // Don't make these definitions available to the main body of the source code. +struct tagRAWINPUT; + class FInputDevice { public: virtual ~FInputDevice() = 0; virtual bool GetDevice() = 0; virtual void ProcessInput(); - virtual bool ProcessRawInput(RAWINPUT *raw, int code); + virtual bool ProcessRawInput(tagRAWINPUT *raw, int code); virtual bool WndProcHook(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, LRESULT *result); };