mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 19:46:58 +01:00
19 lines
219 B
C
19 lines
219 B
C
|
#ifndef _HORNET_H_
|
||
|
#define _HORNET_H_
|
||
|
|
||
|
#include <gctypes.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
bool Hornet_ScanPads();
|
||
|
u32 Hornet_ButtonsHeld(int chan);
|
||
|
char* Hornet_Status();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|