SysCheck-ModMii-Edition/include/tools.h
Joostinonline 599d578ecf -Corrected the times between messages. It's amazing what accidentally adding several extra 0's can do.
-Fixed a translation for "Unknown".
-Moved a few functions around.
-Made the "Sorting IOS titles" part faster by removing unnecessary SD mount/unmount
2014-07-25 18:42:07 +00:00

24 lines
374 B
C

#ifndef __TOOLS_H__
#define __TOOLS_H__
#ifdef __cplusplus
extern "C"
{
#endif
// Values for DetectInput
#define DI_BUTTONS_HELD 0
#define DI_BUTTONS_DOWN 1
void logfile(const char *format, ...);
void *allocate_memory(u32 size);
int NandStartup(void);
void NandShutdown(void);
u32 DetectInput(u8 DownOrHeld);
#ifdef __cplusplus
}
#endif
#endif