SysCheck-ModMii-Edition/include/gecko.h
Joostinonline 4631271a75 -Removed some unused code
-Fixed DM/DML report info
2014-02-18 01:37:54 +00:00

28 lines
488 B
C

#ifndef _GECKO_H_
#define _GECKO_H_
#ifdef __cplusplus
extern "C" {
#endif
//#define NO_DEBUG
#ifndef NO_DEBUG
//use this just like printf();
void gprintf(const char *str, ...);
void gsenddata(const u8 *data, int length, const char *filename);
void ghexdump(void *d, int len);
bool InitGecko();
void printfBoth( const char *str, ... );
#else
#define gprintf(...)
#define gsenddata(...)
#define InitGecko() false
#endif /* NO_DEBUG */
#ifdef __cplusplus
}
#endif
#endif