mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
4e9f70490c
(hopefully fixes random blackscreens)
27 lines
393 B
C
27 lines
393 B
C
|
|
|
|
#ifndef _GECKO_H_
|
|
#define _GECKO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern bool geckoinit;
|
|
extern bool bufferMessages;
|
|
extern bool WriteToSD;
|
|
|
|
//use this just like printf();
|
|
void gprintf(const char *format, ...);
|
|
void ghexdump(void *d, int len);
|
|
bool InitGecko();
|
|
void AllocSDGeckoBuffer();
|
|
void ClearLogBuffer();
|
|
void GeckoDisable();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|