shithub: cstory

ref: 8484fc2c2d4cc097f35b5f9ff4068b21801addf9
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();