X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=sys.h;h=4a992f6df0c5876829bae7ab4fa3d933f9fc6e01;hb=deedc73420b17742f8a9bb1c5158fca5c0896240;hp=2644d074311baf99ad68fc21285a967ec007eb1c;hpb=40a6f67c7fc621ac5a0e531856e11a1ca8c40a96;p=xonotic%2Fdarkplaces.git diff --git a/sys.h b/sys.h index 2644d074..4a992f6d 100644 --- a/sys.h +++ b/sys.h @@ -44,14 +44,11 @@ typedef struct } dllfunction_t; -qboolean Sys_LoadLibrary (const char* dllname, dllhandle_t* handle, const dllfunction_t *fcts); +// "dllnames" is an NULL terminated array of possible names for the DLL you want to load +qboolean Sys_LoadLibrary (const char** dllnames, dllhandle_t* handle, const dllfunction_t *fcts); void Sys_UnloadLibrary (dllhandle_t* handle); void* Sys_GetProcAddress (dllhandle_t handle, const char* name); -void Sys_Print(const char *msg); -void Sys_Printf(const char *fmt, ...); -// send text to the quake console (and possibly to terminal) - // called after Com_InitArgv void Sys_Shared_EarlyInit (void); // called after Host_init