mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
c19f116046
-improved wifi gecko (now buffers messages, more stable etc)
22 lines
270 B
C++
22 lines
270 B
C++
|
|
#ifndef _GECKO_HPP_
|
|
#define _GECKO_HPP_
|
|
|
|
#include <gccore.h>
|
|
|
|
void Gecko_Init(void);
|
|
void LogToSD_SetBuffer(bool buf);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void gprintf(const char *format, ...);
|
|
void ghexdump(void *d, int len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|