mirror of
https://github.com/wiiu-env/WiiUPluginSystem.git
synced 2024-11-16 07:39:24 +01:00
17e34ad60b
- Copied the function patcher from the function_patcher example and modified to work with this porject - Minor formatting - Added global struct with stores the replacement functions - Extended the useable space for plugins
21 lines
308 B
C
21 lines
308 B
C
#ifndef _MAIN_H_
|
|
#define _MAIN_H_
|
|
|
|
#include <dynamic_libs/os_functions.h>
|
|
#include <dynamic_libs/os_types.h>
|
|
|
|
/* Main */
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//! C wrapper for our C++ functions
|
|
int Menu_Main(int argc, char **argv);
|
|
void loadElf(const char * elfPath);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|