windows
动态库加载
// "./test.dll": 动态库所在的全路径
// 返回值: 返回模块句柄
HINSTANCE handle = LoadLibrary("./test.dll");
动态库卸载
// handle: LoadLibrary返回值
FreeLibrary(handle);
获取函数指针
// handle: LoadLibrary返回值
// "Stream_Init": 函数名
// 定义函数指针
typedef BOOL (_stdcall *FileStream)(string, string);
// 获取函数指针
FileStream stream;
stream = (FileStream)GetProcAddress(handle, "Stream_Init");
// 调用函数Stream_Init
stream("h264", "pcma");
加载层级依赖的动态库
// 前提: test.dll依赖其他动态库如test1.dll
HINSTANCE handle = LoadLibraryEx("./test.dll", NULL, LOAD_WITH_ALTERED_SEARCH_PATH);
Linux
动态库加载
// 原型
void *dlopen(const char *filename, int flag);
// flag含义:
// RTLD_LAZY: 在dlopen返回前,对于动态库中存在的未定义的变量(如外部变量extern,也可以是函数)不执行解析;
// RTLD_NOW: 在dlopen返回前,解析出每个未定义变量的地址,如果解析不出来,在dlopen会返回NULL;
// RTLD_GLOBAL: 使库中的解析的定义变量在随后的其它的链接库中变得可以使用。
// 示例
HINSTANCE handle = (HINSTANCE)dlopen("./test.dll", RTLD_NOW);
动态库卸载
dlclose((void*)handle);
获取函数指针
PROC proc = (PROC)dlsym((void*)handle, "Stream_Init");