2
0
mirror of https://github.com/boostorg/dll.git synced 2026-01-27 18:52:18 +00:00

Started the renaming to Boost.DLL

This commit is contained in:
Antony Polukhin
2014-08-29 18:01:24 +04:00
parent bb89d10df6
commit 94ecf69ded
24 changed files with 67 additions and 67 deletions

View File

@@ -24,7 +24,7 @@ int main(int argc, char* argv[]) {
typedef boost::shared_ptr<my_plugin_api> (pluginapi_create_t)();
boost::function<pluginapi_create_t> creator
= boost::plugin::shared_function_alias<pluginapi_create_t>(shared_library_path, "create_plugin");
= boost::dll::shared_function_alias<pluginapi_create_t>(shared_library_path, "create_plugin");
boost::shared_ptr<my_plugin_api> plugin = creator();