mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
12e42498dc
real dynamic ramdisk (currently unused) * added Make.config
28 lines
344 B
C
28 lines
344 B
C
|
|
|
|
#ifndef _GECKO_H_
|
|
#define _GECKO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
//giantpune's functions for USB gecko
|
|
|
|
#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
|
|
|