basic joystick support

This commit is contained in:
Steven Fuller 2002-09-07 03:03:52 +00:00 committed by Patryk Obara
parent 553fa56442
commit 7c43155a90
3 changed files with 100 additions and 24 deletions

View file

@ -205,6 +205,23 @@ typedef struct DPMSG_DESTROYPLAYERORGROUP
} DPMSG_DESTROYPLAYERORGROUP;
typedef DPMSG_DESTROYPLAYERORGROUP * LPDPMSG_DESTROYPLAYERORGROUP;
#define JOYCAPS_HASR 1
typedef struct JOYINFOEX
{
int dwXpos;
int dwYpos;
int dwRpos;
int dwUpos;
int dwVpos;
int dwPOV;
} JOYINFOEX;
typedef struct JOYCAPS
{
int wCaps;
} JOYCAPS;
#ifdef __cplusplus
};
#endif