Any-Region-Changer-ModMii-E.../source/gecko.h

30 lines
502 B
C
Raw Normal View History

2022-04-21 02:12:38 +02:00
#ifndef _GECKO_H_
#define _GECKO_H_
#ifdef __cplusplus
extern "C"
{
#endif
char ascii2(char s);
2022-04-21 03:38:39 +02:00
//#ifndef NO_DEBUG
// use this just like printf();
2022-04-21 02:12:38 +02:00
void gprintf(const char *str, ...);
bool InitGecko();
void hexdump2(void *d, int len);
void USBGeckoOutput();
void gecko_log(const char *str, ...);
2022-04-21 03:38:39 +02:00
//#else
//#define gprintf(...)
//#define InitGecko() false
//#define hexdump( x, y )
//#endif /* NO_DEBUG */
2022-04-21 02:12:38 +02:00
#ifdef __cplusplus
}
#endif
#endif