snes9xgx/source/utils/mayflash.h
EthanArmbrust 09149db1b3
Add support for Mayflash 2-port SNES USB adapter (#965)
* Add support for Mayflash 2-port SNES USB adapter

* Fix declaration

* increase char buffer size for GetUSBControllerInfo
2021-02-20 13:21:21 -07:00

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