20 lines
346 B
C
20 lines
346 B
C
#pragma once
|
|
|
|
#include "WindowsWrapper.h"
|
|
|
|
extern BOOL gbUseJoystick;
|
|
extern int gJoystickButtonTable[8];
|
|
|
|
struct JOYSTICK_STATUS
|
|
{
|
|
BOOL bLeft;
|
|
BOOL bRight;
|
|
BOOL bUp;
|
|
BOOL bDown;
|
|
BOOL bButton[32];
|
|
};
|
|
|
|
void ReleaseDirectInput(void);
|
|
BOOL InitDirectInput(void);
|
|
BOOL GetJoystickStatus(JOYSTICK_STATUS *status);
|
|
BOOL ResetJoystickStatus(void);
|