The file that provides functions to manage dynamic-link libraries. More...
| Macros | |
| #define | RTLD_LAZY 0x00001 /* lazy function call binding. Unused */ | 
| Lazy function call binding. | |
| #define | RTLD_NOW 0x00002 /* immediate function call binding. Unused */ | 
| Immediate function call binding. | |
| #define | RTLD_GLOBAL | 
| Symbols in this dlopen'ed obj are visible to other dlopen'ed objs.  More... | |
| #define | RTLD_LOCAL | 
| Symbols in this dlopen'ed obj are not visible to other dlopen'ed objs.  More... | |
| #define | RTLD_NODELETE 0x01000 /* do not delete object when closed. */ | 
| Symbols are not deleted when closed. | |
| #define | HAVE_DLOPEN 1 | 
| #define | HAVE_DLSYM 1 | 
| Functions | |
| void * | dlopen (const char *path, int mode) | 
| Map a specified executable module (either a .dll or .exe file) into the address space of the user process.  More... | |
| int | dlclose (void *handle) | 
| Close a dynamic-link library.  More... | |
| void * | dlsym (void *handle, const char *symbol) | 
| Get the address of a symbol.  More... | |
| char * | dlerror (void) | 
| Get diagnostic information.  More... | |
The file that provides functions to manage dynamic-link libraries.
| #define RTLD_GLOBAL | 
Symbols in this dlopen'ed obj are visible to other dlopen'ed objs.
| #define RTLD_LOCAL | 
Symbols in this dlopen'ed obj are not visible to other dlopen'ed objs.