mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 00:15:14 +01:00
09149db1b3
* Add support for Mayflash 2-port SNES USB adapter * Fix declaration * increase char buffer size for GetUSBControllerInfo
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
|