mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
8a4e192022
- Removed no disc in drive patch - DoGameHooks should be called always
27 lines
306 B
C
27 lines
306 B
C
|
|
|
|
#ifndef _GECKO_H_
|
|
#define _GECKO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef NO_DEBUG
|
|
//use this just like printf();
|
|
void gprintf(const char *str, ...);
|
|
bool InitGecko();
|
|
#else
|
|
#define gprintf(...)
|
|
#define InitGecko() false
|
|
#endif /* NO_DEBUG */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|