mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 16:35:16 +01:00
18 lines
223 B
C
18 lines
223 B
C
|
#ifndef _XBOX360_H_
|
||
|
#define _XBOX360_H_
|
||
|
|
||
|
#include <gctypes.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
bool XBOX360_ScanPads();
|
||
|
u32 XBOX360_ButtonsHeld(int chan);
|
||
|
char* XBOX360_Status();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|