2012-01-21 20:57:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _GECKO_H_
|
|
|
|
#define _GECKO_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern bool geckoinit;
|
2012-04-29 15:42:35 +00:00
|
|
|
extern bool bufferMessages;
|
|
|
|
extern bool WriteToSD;
|
2012-01-21 20:57:41 +00:00
|
|
|
|
|
|
|
//use this just like printf();
|
|
|
|
void gprintf(const char *format, ...);
|
|
|
|
void ghexdump(void *d, int len);
|
|
|
|
bool InitGecko();
|
2012-06-14 15:27:57 +00:00
|
|
|
void AllocSDGeckoBuffer();
|
2012-05-19 12:29:24 +00:00
|
|
|
void ClearLogBuffer();
|
2012-07-18 20:08:53 +00:00
|
|
|
void GeckoDisable();
|
2012-01-21 20:57:41 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|