Change prefix for interfaces

gp_* -> i_*
go_* -> o_*
This commit is contained in:
8dcc
2023-07-20 20:25:49 +02:00
parent 6640f52047
commit 4db305daa2
4 changed files with 12 additions and 12 deletions

View File

@@ -24,8 +24,8 @@ bool globals_init(void) {
}
/* Get symbol addresses using dlsym and the handler we just opened */
gp_engine = (cl_enginefunc_t*)dlsym(hw, "cl_enginefuncs");
gp_client = (cl_clientfunc_t*)dlsym(hw, "cl_funcs");
i_engine = (cl_enginefunc_t*)dlsym(hw, "cl_enginefuncs");
i_client = (cl_clientfunc_t*)dlsym(hw, "cl_funcs");
return true;
}