#include "MyGUI_Prerequest.h"
#include <string>
Go to the source code of this file.
Data Structures | |
class | MyGUI::DynLib |
Resource holding data about a dynamic library. More... | |
Namespaces | |
namespace | MyGUI |
Defines | |
#define | MYGUI_DYNLIB_HANDLE void* |
#define | MYGUI_DYNLIB_LOAD(a) dlopen( a, RTLD_LAZY | RTLD_GLOBAL) |
#define | MYGUI_DYNLIB_GETSYM(a, b) dlsym( a, b ) |
#define | MYGUI_DYNLIB_UNLOAD(a) dlclose( a ) |
Definition in file MyGUI_DynLib.h.
#define MYGUI_DYNLIB_GETSYM | ( | a, | |||
b | ) | dlsym( a, b ) |
Definition at line 44 of file MyGUI_DynLib.h.
#define MYGUI_DYNLIB_HANDLE void* |
Definition at line 42 of file MyGUI_DynLib.h.
#define MYGUI_DYNLIB_LOAD | ( | a | ) | dlopen( a, RTLD_LAZY | RTLD_GLOBAL) |
Definition at line 43 of file MyGUI_DynLib.h.
#define MYGUI_DYNLIB_UNLOAD | ( | a | ) | dlclose( a ) |
Definition at line 45 of file MyGUI_DynLib.h.