2009-10-20 08:46:55 -03:00
|
|
|
|
2009-10-20 20:00:19 -03:00
|
|
|
|
|
|
|
#ifndef _GECKO_H_
|
|
|
|
#define _GECKO_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2009-10-20 08:46:55 -03:00
|
|
|
//giantpune's functions for USB gecko
|
|
|
|
|
|
|
|
//use this just like printf();
|
|
|
|
void gprintf(const char *str, ...);
|
|
|
|
bool InitGecko();
|
|
|
|
|
2009-10-20 20:00:19 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|