Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

205 lines
6.8 KiB

  1. // systest.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include <windows.h>
  5. #include <tchar.h>
  6. #include <stdio.h>
  7. #include <dinput.h>
  8. #include "disysdef.h"
  9. #define WINNT
  10. #include "dinputv.h"
  11. #define IOCTL_INTERNAL_KEYBOARD_CONNECT CTL_CODE(FILE_DEVICE_KEYBOARD, 0x0080, METHOD_NEITHER, FILE_ANY_ACCESS)
  12. BYTE g_arbTable[256] =
  13. {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F,
  14. 0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A, 0x1B, 0x1C, 0x1D, 0x1E, 0x1F,
  15. 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29, 0x2A, 0x2B, 0x2C, 0x2D, 0x2E, 0x2F,
  16. 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F,
  17. 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49, 0x4A, 0x4B, 0x4C, 0x4D, 0x4E, 0x4F,
  18. 0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59, 0x5A, 0x5B, 0x5C, 0x5D, 0x5E, 0x5F,
  19. 0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6A, 0x6B, 0x6C, 0x6D, 0x6E, 0x6F,
  20. 0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7A, 0x7B, 0x7C, 0x7D, 0x7E, 0x7F,
  21. 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8A, 0x8B, 0x8C, 0x8D, 0x8E, 0x8F,
  22. 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9A, 0x9B, 0x9C, 0x9D, 0x9E, 0x9F,
  23. 0xA0, 0xA1, 0xA2, 0xA3, 0xA4, 0xA5, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xAF,
  24. 0xB0, 0xB1, 0xB2, 0xB3, 0xB4, 0xB5, 0xB6, 0xB7, 0xB8, 0xB9, 0xBA, 0xBB, 0xBC, 0xBD, 0xBE, 0xBF,
  25. 0xC0, 0xC1, 0xC2, 0xC3, 0xC4, 0xC5, 0xC6, 0xC7, 0xC8, 0xC9, 0xCA, 0xCB, 0xCC, 0xCD, 0xCE, 0xCF,
  26. 0xD0, 0xD1, 0xD2, 0xD3, 0xD4, 0xD5, 0xD6, 0xD7, 0xD8, 0xD9, 0xDA, 0xDB, 0xDC, 0xDD, 0xDE, 0xDF,
  27. 0xE0, 0xE1, 0xE2, 0xE3, 0xE4, 0xE5, 0xE6, 0xE7, 0xE8, 0xE9, 0xEA, 0xEB, 0xEC, 0xED, 0xEE, 0xEF,
  28. 0xF0, 0xF1, 0xF2, 0xF3, 0xF4, 0xF5, 0xF6, 0xF7, 0xF8, 0xF9, 0xFA, 0xFB, 0xFC, 0xFD, 0xFE, 0xFF};
  29. HANDLE hFile;
  30. void OpenDevice(LPCTSTR tszDevName)
  31. {
  32. HANDLE hFile;
  33. hFile = CreateFile(tszDevName, 0, 0, NULL, OPEN_EXISTING, FILE_FLAG_DELETE_ON_CLOSE, NULL);
  34. // hFile = CreateFile(tszDevName, GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
  35. if (hFile == INVALID_HANDLE_VALUE)
  36. {
  37. DWORD dwError = GetLastError();
  38. _tprintf(_T("Error opening using symbolic link %s: %u\n"), tszDevName, dwError);
  39. }
  40. else
  41. {
  42. _tprintf(_T("Driver opened successfully using symbolic link %s!\n"), tszDevName);
  43. CloseHandle(hFile);
  44. }
  45. }
  46. DWORD GetDiSysVerion()
  47. {
  48. DWORD dwReturned;
  49. DWORD dwVersion;
  50. DWORD dwInput = 0x87654321;
  51. if (!DeviceIoControl(hFile, IOCTL_GETVERSION, &dwInput, sizeof(DWORD), &dwVersion, sizeof(DWORD), &dwReturned, NULL))
  52. {
  53. DWORD dwError = GetLastError();
  54. _tprintf(_T("DeviceIoControl() failed: %u\n"), dwError);
  55. } else
  56. _tprintf(_T("DINPUT.SYS Version 0x%08X\n"), dwVersion);
  57. return dwVersion;
  58. }
  59. HANDLE CreateKbdInstance(PSYSDEVICEFORMAT pSysDevFormat)
  60. {
  61. DWORD dwReturned;
  62. PVXDINSTANCE pVxdInst;
  63. BYTE arbInBuffer[sizeof(SYSDEVICEFORMAT) + 256 * sizeof(BYTE)];
  64. if (!pSysDevFormat) return NULL;
  65. MoveMemory(arbInBuffer, pSysDevFormat, sizeof(SYSDEVICEFORMAT));
  66. MoveMemory(arbInBuffer + sizeof(SYSDEVICEFORMAT), pSysDevFormat->pExtra, sizeof(BYTE) * 256);
  67. pVxdInst = new VXDINSTANCE;
  68. if (!pVxdInst) return NULL;
  69. if (!DeviceIoControl(hFile, IOCTL_KBD_CREATEINSTANCE,
  70. arbInBuffer, sizeof(SYSDEVICEFORMAT)/* + 256 * sizeof(BYTE)*/,
  71. &pVxdInst->hInst, sizeof(pVxdInst->hInst), &dwReturned, NULL))
  72. {
  73. _tprintf(_T("DeviceIoControl failed: %u\n"), GetLastError());
  74. return NULL;
  75. }
  76. #ifdef WIN95
  77. _tprintf(_T("hInst = 0x%08X\n"), pVxdInst->hInst);
  78. _tprintf(_T("arbInBuffer : 0x%08X\n"), *(LPDWORD)arbInBuffer);
  79. #else
  80. _tprintf(_T("hInst = 0x%P\n"), pVxdInst->hInst);
  81. _tprintf(_T("arbInBuffer : 0x%P\n"), *(LPDWORD)arbInBuffer);
  82. #endif
  83. return pVxdInst;
  84. }
  85. void DestroyInstance(HANDLE hInst)
  86. {
  87. DWORD dwReturned;
  88. if (!DeviceIoControl(hFile, IOCTL_DESTROYINSTANCE, &hInst, sizeof(HANDLE*), NULL, 0, &dwReturned, NULL))
  89. {
  90. DWORD dwError = GetLastError();
  91. _tprintf(_T("DestroyInstance failed: %u\n"), dwError);
  92. } else
  93. {
  94. delete hInst;
  95. }
  96. }
  97. BOOL AcquireInstance(HANDLE hInst)
  98. {
  99. DWORD dwReturned;
  100. if (!DeviceIoControl(hFile, IOCTL_ACQUIREINSTANCE, &hInst, sizeof(HANDLE*), NULL, 0, &dwReturned, NULL))
  101. return FALSE;
  102. return TRUE;
  103. }
  104. BOOL UnacquireInstance(HANDLE hInst)
  105. {
  106. DWORD dwReturned;
  107. if (!DeviceIoControl(hFile, IOCTL_UNACQUIREINSTANCE, &hInst, sizeof(HANDLE*), NULL, 0, &dwReturned, NULL))
  108. return FALSE;
  109. return TRUE;
  110. }
  111. BOOL SetBufferSize(HANDLE hInst, DWORD dwSize)
  112. {
  113. HANDLE arBuffer[2];
  114. DWORD dwReturned;
  115. arBuffer[0] = hInst;
  116. *(LPDWORD)&arBuffer[1] = dwSize;
  117. if (!DeviceIoControl(hFile, IOCTL_SETBUFFERSIZE, arBuffer, sizeof(HANDLE) * 2, NULL, 0, &dwReturned, NULL))
  118. return FALSE;
  119. return TRUE;
  120. }
  121. // Returns the number of events actually returned
  122. DWORD GetDeviceData(HANDLE hInst, DIDEVICEOBJECTDATA *pDevData, DWORD dwLength)
  123. {
  124. DWORD dwReturned;
  125. if (!DeviceIoControl(hFile, IOCTL_GETDATA, &hInst, sizeof(HANDLE*), pDevData, dwLength * sizeof(DIDEVICEOBJECTDATA), &dwReturned, NULL))
  126. {
  127. DWORD dwError = GetLastError();
  128. _tprintf(_T("Error getting device data: %u\n"), dwError);
  129. return 0;
  130. }
  131. return dwReturned / sizeof(DIDEVICEOBJECTDATA);
  132. }
  133. int main(int argc, char* argv[])
  134. {
  135. // OpenDevice(_T("\\\\.\\DINPUT1"));
  136. // hFile = CreateFile(_T("\\\\.\\Root#*PNP030b#1_0_22_0_32_0#{0c64d244-cbe4-4f74-a213-9965bc846e03}"), 0, 0, NULL, OPEN_EXISTING, FILE_FLAG_DELETE_ON_CLOSE, NULL);
  137. hFile = CreateFile(_T("\\\\.\\DINPUT1"), 0, 0, NULL, OPEN_EXISTING, FILE_FLAG_DELETE_ON_CLOSE, NULL);
  138. if (hFile == INVALID_HANDLE_VALUE)
  139. {
  140. DWORD dwError = GetLastError();
  141. _tprintf(_T("Error: %u\n"), dwError);
  142. return 0;
  143. }
  144. _tprintf(_T("Driver opened successfully!\n"));
  145. DWORD dwVersion = GetDiSysVerion();
  146. _tprintf(_T("Version = 0x%08X\n"), dwVersion);
  147. SYSDEVICEFORMAT SysDevFormat;
  148. SysDevFormat.cbData = sizeof(SysDevFormat);
  149. SysDevFormat.pExtra = g_arbTable;
  150. HANDLE hKb = CreateKbdInstance(&SysDevFormat);
  151. #ifdef WIN95
  152. _tprintf(_T("Instance Handle = 0x%08X\n"), hKb);
  153. #else
  154. _tprintf(_T("Instance Handle = 0x%P\n"), hKb);
  155. #endif
  156. if (hKb)
  157. {
  158. DIDEVICEOBJECTDATA arDevData[8];
  159. DWORD dwNumEvents;
  160. DWORD i;
  161. SetBufferSize(hKb, 64);
  162. AcquireInstance(hKb);
  163. do
  164. {
  165. dwNumEvents = GetDeviceData(hKb, arDevData, 8);
  166. // if (dwNumEvents) _tprintf(_T("%u events\n"), dwNumEvents);
  167. for (i = 0; i < dwNumEvents; ++i)
  168. {
  169. _tprintf(_T("Key %s (%X)\n"), arDevData[i].dwData & 0x80 ? _T("Down") : _T("Up "), arDevData[i].dwOfs);
  170. if (arDevData[i].dwOfs == 1) break;
  171. }
  172. } while (arDevData[i].dwOfs != 1);
  173. UnacquireInstance(hKb);
  174. DestroyInstance(hKb);
  175. }
  176. else
  177. {
  178. DWORD dwError = GetLastError();
  179. _tprintf(_T("CreateKbdInstance() failed %u\n"), dwError);
  180. }
  181. CloseHandle(hFile);
  182. _tprintf(_T("Handle closed\n"));
  183. return 0;
  184. }