mirror of
https://github.com/Maschell/hid_to_vpad.git
synced 2024-11-10 01:15:06 +01:00
20a5838c57
- Fixed the intial value of the GuiToogle - updated the filelist and added a icon for a settings menu
24 lines
365 B
C
24 lines
365 B
C
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
/* Main */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//! C wrapper for our C++ functions
|
|
s32 Menu_Main(void);
|
|
void deInit(void);
|
|
void ApplyPatches(void);
|
|
void RestorePatches(void);
|
|
|
|
s32 isInMiiMakerHBL();
|
|
bool SplashScreen(s32 time,const char * message,u8 pos, u32 button);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|