#include #include #include #include "KXL.h" Sint32 KXL_joydev; //============================================================== // Open joystick device // arguments : device // return value : True - ok, False - NG //============================================================== Bool KXL_OpenJoystick(Uint8 *devname) { return False; } //============================================================== // Close joystick device //============================================================== void KXL_CloseJoystick(void) { if (KXL_joydev == True) { close(KXL_joydev); } } //============================================================== // Read joystick device // arguments : device // return value : True - ok, False - NG //============================================================== Bool KXL_ReadJoystick(KXL_Joystick *my) { }