| 4 | static int configGameId = GetPrivateProfileInt(TEXT("Settings"), TEXT("GameId"), 1, settingsFilenameA); |
| 5 | |
| 6 | DirectInputDeviceWrapper::DirectInputDeviceWrapper(LPVOID device, bool unicode) |
| 7 | { |
| 8 | useUnicode = unicode; |
| 9 | if (unicode) |
| 10 | { |
| 11 | pDeviceW = (LPDIRECTINPUTDEVICE8W)device; |
| 12 | pDeviceA = NULL; |
| 13 | } |
| 14 | else |
| 15 | { |
| 16 | pDeviceA = (LPDIRECTINPUTDEVICE8A)device; |
| 17 | pDeviceW = NULL; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | DirectInputDeviceWrapper::~DirectInputDeviceWrapper(void) |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected