mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 11:39:21 +01:00
16 lines
178 B
C
16 lines
178 B
C
|
#ifndef _RETRODE_H_
|
||
|
#define _RETRODE_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
bool Retrode_ScanPads();
|
||
|
u32 Retrode_ButtonsHeld(int chan);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|