mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 11:39:21 +01:00
19 lines
224 B
C
19 lines
224 B
C
#ifndef _RETRODE_H_
|
|
#define _RETRODE_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool Retrode_ScanPads();
|
|
u32 Retrode_ButtonsHeld(int chan);
|
|
char* Retrode_Status();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|