Boost 1.61新增了一个DLL库,跟Qt中的QLibrary类似,提供了跨平台的动态库链接库加载、调用等功能。
http://www.boost.org/users/history/version_1_61_0.html
编写一个Test.dll,导出方法Add
- INT WINAPI Add(INT x, INT y)
- {
- return x + y;
- }
加载、检查导出方法是否存在、调用方法、卸载应该是最常用的功能了。
- int main()
- {
- auto libPath = "D:\Test.dll";
- boost::dll::shared_library lib(libPath);
- lib.has("add"); // false。符号名称是大小写敏感的
- if (lib.has("Add"))
- {
- auto& symbol = lib.get<int __stdcall(int, int)>("Add");
- std::cout << symbol(5, 10) << std::endl;
- }
- boost::dll::shared_library lib2;
- lib2.load(libPath);
- if (lib2.is_loaded())
- {
- auto& symbol = lib.get<int __stdcall(int, int)>("Add");
- std::cout << symbol(3, 5) << std::endl;
- lib2.unload();
- }
- system("pause");
- return 0;
- }
http://blog.csdn.net/aqtata/article/details/51780423