summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/hle.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/hle.h b/src/core/hle/hle.h
index e3b8d483a..9466be540 100644
--- a/src/core/hle/hle.h
+++ b/src/core/hle/hle.h
@@ -19,15 +19,15 @@ namespace HLE {
19typedef void (*Func)(); 19typedef void (*Func)();
20 20
21struct FunctionDef { 21struct FunctionDef {
22 u32 id; 22 u32 id;
23 Func func; 23 Func func;
24 std::string name; 24 std::string name;
25}; 25};
26 26
27struct ModuleDef { 27struct ModuleDef {
28 std::string name; 28 std::string name;
29 int num_funcs; 29 int num_funcs;
30 const FunctionDef* func_table; 30 const FunctionDef* func_table;
31}; 31};
32 32
33void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); 33void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);