WiiFlow_Lite/source/gecko/gecko.h
2012-01-21 20:57:41 +00:00

22 lines
266 B
C

#ifndef _GECKO_H_
#define _GECKO_H_
#ifdef __cplusplus
extern "C" {
#endif
extern bool geckoinit;
//use this just like printf();
void gprintf(const char *format, ...);
void ghexdump(void *d, int len);
bool InitGecko();
#ifdef __cplusplus
}
#endif
#endif