mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 04:35:05 +01:00
replace tabs with spaces
This commit is contained in:
parent
f6c328cf37
commit
7ea7585898
@ -19,15 +19,15 @@ namespace HLE {
|
|||||||
typedef void (*Func)();
|
typedef void (*Func)();
|
||||||
|
|
||||||
struct FunctionDef {
|
struct FunctionDef {
|
||||||
u32 id;
|
u32 id;
|
||||||
Func func;
|
Func func;
|
||||||
std::string name;
|
std::string name;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ModuleDef {
|
struct ModuleDef {
|
||||||
std::string name;
|
std::string name;
|
||||||
int num_funcs;
|
int num_funcs;
|
||||||
const FunctionDef* func_table;
|
const FunctionDef* func_table;
|
||||||
};
|
};
|
||||||
|
|
||||||
void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
|
void RegisterModule(std::string name, int num_functions, const FunctionDef *func_table);
|
||||||
|
Loading…
Reference in New Issue
Block a user