使用dll
1、加载lib,导入对应的函数
2、加载lib,包含头文件,不需要导入函数
3、动态加载dll,以下代码时动态加载dll:
HMODULE hDll = LoadLibrary(_T("test.dll")); if (hDll != NULL) { FuncPro func = (FuncPro)GetProcAddress(hDll, (char*)5); if (func) { int x = func(10, 2); int y = 0; } } FreeLibrary(hDll);