WiiFlow_Lite/source/gecko/gecko.h

26 lines
371 B
C
Raw Normal View History

2012-01-21 21:57:41 +01:00
#ifndef _GECKO_H_
#define _GECKO_H_
#ifdef __cplusplus
extern "C" {
#endif
extern bool geckoinit;
extern bool bufferMessages;
extern bool WriteToSD;
2012-01-21 21:57:41 +01:00
//use this just like printf();
void gprintf(const char *format, ...);
void ghexdump(void *d, int len);
bool InitGecko();
void AllocSDGeckoBuffer();
void ClearLogBuffer();
2012-01-21 21:57:41 +01:00
#ifdef __cplusplus
}
#endif
#endif