introduction.qbk 946 B

1234567891011121314151617181920212223
  1. [/
  2. Copyright 2014 Renato Tegon Forti, Antony Polukhin
  3. Copyright 2015-2019 Antony Polukhin
  4. Distributed under the Boost Software License, Version 1.0.
  5. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. /]
  7. [section:introduction Motivation]
  8. Adding a specific features to an existing software applications at runtime could be useful in many cases. Such extensions, or plugins, are usually implemented using Dynamic Library Modules (DLL,SO/DSO) loaded at runtime.
  9. This library was designed to simplify plugin development using C++ in a portable cross-platform manner.
  10. Library provides a portable across platforms way to:
  11. * load libraries
  12. * import any native functions and variables
  13. * make alias names for C++ mangled functions and symbols
  14. * query libraries for sections and exported symbols
  15. * self loading and self querying
  16. * getting program and module location by exported symbol
  17. [endsect]