mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-19 02:31:25 +00:00
25 lines
470 B
C
25 lines
470 B
C
|
#ifndef rawinput_h__
|
||
|
#define rawinput_h__
|
||
|
|
||
|
#include "compat.h"
|
||
|
|
||
|
void RI_PollDevices(BOOL loop);
|
||
|
void RI_ProcessMessage(MSG *msg);
|
||
|
BOOL RI_CaptureInput(BOOL grab, HWND target);
|
||
|
|
||
|
#ifndef VK_LBUTTON
|
||
|
#define VK_LBUTTON 0x01
|
||
|
#endif
|
||
|
#ifndef VK_RBUTTON
|
||
|
#define VK_RBUTTON 0x02
|
||
|
#endif
|
||
|
#ifndef VK_CANCEL
|
||
|
#define VK_CANCEL 0x03
|
||
|
#endif
|
||
|
#ifndef VK_MBUTTON
|
||
|
#define VK_MBUTTON 0x04 /* NOT contiguous with L & RBUTTON */
|
||
|
#endif
|
||
|
|
||
|
#endif // rawinput_h__
|
||
|
|