usbloadergx/source/gecko.h
giantpune b753af6d4d sprinkled gprintf() throughout the source some more.
added functions to mess with the "return to" stub.  everything should be working right, but if i messed up, it may cause you not to be able to exit the program (it could just keep restarting itself).  now when booting homebrew, they should exit back to this program if you have a channel installed as UNEO or ULNR.  priority is given to UNEO if both are present.
2009-10-20 23:00:19 +00:00

21 lines
240 B
C

#ifndef _GECKO_H_
#define _GECKO_H_
#ifdef __cplusplus
extern "C" {
#endif
//giantpune's functions for USB gecko
//use this just like printf();
void gprintf(const char *str, ...);
bool InitGecko();
#ifdef __cplusplus
}
#endif
#endif