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.

25 lines
249 B

  1. #define JOYSTICK_PORT 0x201
  2. VOID
  3. JoystickPortRead(
  4. WORD port,
  5. BYTE *pData
  6. );
  7. VOID
  8. JoystickPortWrite(
  9. WORD port,
  10. BYTE data
  11. );
  12. BOOL
  13. JoystickInit(
  14. VOID
  15. );
  16. DWORD WINAPI
  17. JoystickPollThread(
  18. LPVOID context
  19. );