mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
19 lines
229 B
C
19 lines
229 B
C
|
#ifndef _MAYFLASH_H_
|
||
|
#define _MAYFLASH_H_
|
||
|
|
||
|
#include <gctypes.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
bool Mayflash_ScanPads();
|
||
|
u32 Mayflash_ButtonsHeld(int chan);
|
||
|
char* Mayflash_Status();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|