Go to the documentation of this file.
44#define DLOPEN(a,b) LoadLibrary((a).c_str())
45#define DLSYM(a,b) GetProcAddress((HINSTANCE)(a),(b))
46#define DLCLOSE(a) FreeLibrary((HINSTANCE)(a))
49#define PLUGIN_SUFFIX "dll"
55#define DLOPEN(a,b) dlopen((a).c_str(),(b))
56#define DLSYM(a,b) dlsym((a),(b))
57#define DLCLOSE(a) dlclose((a))
58#define DLERROR() dlerror()
62#define PLUGIN_SUFFIX "dylib"
67#define PLUGIN_SUFFIX "so"