mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-04 15:55:05 +01:00
599d578ecf
-Fixed a translation for "Unknown". -Moved a few functions around. -Made the "Sorting IOS titles" part faster by removing unnecessary SD mount/unmount
24 lines
374 B
C
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
|