1 #ifndef SHAREDLIBRARY_HPP
2 #define SHAREDLIBRARY_HPP
8 #define HSHAREDLIBRARY HMODULE
11 #define HSHAREDLIBRARY void*
39 void*
loadSymbol(
const char* symbolname, std::string* pError);
44 HSHAREDLIBRARY dlHandle;
contains the ability to load symbols from shared Libraries on *NIX and OSX or dynamic link Libraries ...
Definition: sharedlibrary.hpp:20
void * loadSymbol(const char *symbolname, std::string *pError)
load an (exported) symbol from the shared Library.
Definition: sharedlibrary.cpp:53
static SharedLibrary * load(const char *filename, std::string *pError)
tries to load a shared library from a file with filename.
Definition: sharedlibrary.cpp:27