]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sys.h
texture images now take on the TEXF_FORCENEAREST and TEXF_FORCELINEAR flags from...
[xonotic/darkplaces.git] / sys.h
diff --git a/sys.h b/sys.h
index 1890fce29d071e3338fd9c8f4d834887ca95d4a9..4a992f6df0c5876829bae7ab4fa3d933f9fc6e01 100644 (file)
--- a/sys.h
+++ b/sys.h
@@ -44,7 +44,8 @@ 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);