mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
8cc82998ac
(however, I'll keep using that awesome loading bar of it lol) -fixed this strange click sound on game boot
24 lines
309 B
C
24 lines
309 B
C
|
|
#ifndef _GECKO_H_
|
|
#define _GECKO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <gccore.h>
|
|
|
|
extern bool bufferMessages;
|
|
extern bool WriteToSD;
|
|
|
|
//use this just like printf();
|
|
void gprintf(const char *format, ...);
|
|
void ghexdump(void *d, int len);
|
|
bool InitGecko();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|