shithub: cstory

ref: 50ca5e37a2bb6e3f86f4a1d6963eb223119a99ee
dir: /src/Input.h/

View raw version
#pragma once
extern bool gbUseJoystick;
extern int gJoystickButtonTable[8];

struct JOYSTICK_STATUS
{
	bool bLeft;
	bool bRight;
	bool bUp;
	bool bDown;
	bool bButton[32];
};

void ReleaseDirectInput();
bool InitDirectInput();
bool GetJoystickStatus(JOYSTICK_STATUS *pStatus);
bool ResetJoystickStatus();