mirror of
https://github.com/boostorg/dll.git
synced 2026-02-19 02:12:23 +00:00
c009725d76178f447ee56d2f329096ed5467d3e3
alias egrep='egrep --color=auto' alias fgrep='fgrep --color=auto' alias grep='grep --color=auto' alias l='ls -CF' alias la='ls -A' alias ll='ls -alF' alias ls='ls --color=auto' free function was refactored into the method
Boost Dynamic Library Load (Boost.DLL)
Library for comfortable work with DLL and DSO.
Caution
This is not an official Boost C++ library. It wasn't reviewed and can't be downloaded from www.boost.org. This beta is available to boost community to know real interest and get comments for refinement. The intention is to submit library to formal review, if community think that it is interesting!
Docs
Hello World (importing a "C" function)
#include <boost/dll.hpp>
...
boost::function<int(int)> c_func
= boost::dll::import_function<int(int)>(
path_to_shared_library, "c_func_name"
);
About
This library was derived from the Boost.Application library.
License
Distributed under the Boost Software License, Version 1.0.
Description
Languages
C++
99.1%
CMake
0.7%
HTML
0.2%