LiteSQL
sharedlibrary.hpp
1 #ifndef SHAREDLIBRARY_HPP
2 #define SHAREDLIBRARY_HPP
3 
4 #include <string>
5 
6 #ifdef WIN32
7 #include <Windows.h>
8 #define HSHAREDLIBRARY HMODULE
9 #else
10 #include <dlfcn.h>
11 #define HSHAREDLIBRARY void*
12 #endif //#ifdef WIN32
13 
21 public:
22  virtual ~SharedLibrary();
23 
29  static SharedLibrary* load(const char* filename, std::string* pError);
30 
39  void* loadSymbol(const char* symbolname, std::string* pError);
40 
41 private:
42  SharedLibrary(HSHAREDLIBRARY handle);
43 
44  HSHAREDLIBRARY dlHandle;
45 };
46 #endif //#ifndef SHAREDLIBRARY_HPP
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

SourceForge.net Logo