raSystem  1.0 bata
raInput.h
Go to the documentation of this file.
1 #pragma once
2 
3  class RAPI raInput
4  {
5  public:
6  raInput(void);
7 
8  ~raInput(void);
9 
10  bool AddNewDevice(IRARawDevice *device);
11  bool Create(HWND hWnd, bool legacy = true);
12 
13  virtual long OnInput(HWND wnd, WPARAM wParam, LPARAM lParam);
14  virtual long OnInputDeviceChange(HWND wnd, WPARAM wParam, LPARAM lParam);
15 
16  protected:
18  };
raArray< IRARawDevice * > m_devices
Definition: raInput.h:17
Definition: raInput.h:3
#define RAPI
Definition: raMain.h:11
Definition: raArray.h:3