jkxr/Projects/Android/jni/OpenJK/shared/sys/sys_loadlib.h
2022-09-19 22:46:47 +01:00

46 lines
1.6 KiB
C

/*
===========================================================================
Copyright (C) 2005 - 2015, ioquake3 contributors
Copyright (C) 2013 - 2015, OpenJK contributors
This file is part of the OpenJK source code.
OpenJK is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
===========================================================================
*/
#pragma once
#ifdef DEDICATED
# ifdef _WIN32
# include <windows.h>
# define Sys_LoadLibrary(f) (void*)LoadLibrary(f)
# define Sys_UnloadLibrary(h) FreeLibrary((HMODULE)h)
# define Sys_LoadFunction(h,fn) (void*)GetProcAddress((HMODULE)h,fn)
# define Sys_LibraryError() "unknown"
# else
# include <dlfcn.h>
# define Sys_LoadLibrary(f) dlopen(f,RTLD_NOW)
# define Sys_UnloadLibrary(h) dlclose(h)
# define Sys_LoadFunction(h,fn) dlsym(h,fn)
# define Sys_LibraryError() dlerror()
# endif
#else
# include <dlfcn.h>
# define Sys_LoadLibrary(f) dlopen(f,RTLD_NOW)
# define Sys_UnloadLibrary(h) dlclose(h)
# define Sys_LoadFunction(h,fn) dlsym(h,fn)
# define Sys_LibraryError() dlerror()
#endif
void * QDECL Sys_LoadDll(const char *name, qboolean useSystemLib);