hid_to_vpad/src/main.h

24 lines
379 B
C
Raw Permalink Normal View History

2016-04-25 22:22:22 +02:00
#ifndef _MAIN_H_
#define _MAIN_H_
/* Main */
#ifdef __cplusplus
extern "C" {
#endif
#include <dynamic_libs/os_types.h>
2016-04-25 22:22:22 +02:00
//! C wrapper for our C++ functions
s32 Menu_Main(void);
void deInit(void);
void ApplyPatches(void);
void RestorePatches(void);
2016-04-25 22:22:22 +02:00
s32 isInMiiMakerHBL();
bool SplashScreen(s32 time,const char * message,u8 pos, u32 button);
2016-04-25 22:22:22 +02:00
#ifdef __cplusplus
}
#endif
#endif