diff options
| -rw-r--r-- | src/core/hle/hle.h | 12 |
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 { | |||
| 19 | typedef void (*Func)(); | 19 | typedef void (*Func)(); |
| 20 | 20 | ||
| 21 | struct FunctionDef { | 21 | struct 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 | ||
| 27 | struct ModuleDef { | 27 | struct 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 | ||
| 33 | void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); | 33 | void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table); |