Go to the source code of this file.
Classes | |
struct | dl_info |
Defines | |
#define | RTLD_LAZY 0x1 |
#define | RTLD_NOW 0x2 |
#define | RTLD_LOCAL 0x4 |
#define | RTLD_GLOBAL 0x8 |
#define | RTLD_NOLOAD 0x10 |
#define | RTLD_NODELETE 0x80 |
Typedefs | |
typedef struct dl_info | Dl_info |
Functions | |
void * | dllopen (const char *path, int mode) |
void * | dllsym (void *handle, const char *symbol) |
const char * | dllerror (void) |
int | dllclose (void *handle) |
int | dlladdr (void *, Dl_info *) |
#define RTLD_GLOBAL 0x8 |
Definition at line 83 of file dlfcn_darwin.h.
#define RTLD_LAZY 0x1 |
Definition at line 80 of file dlfcn_darwin.h.
#define RTLD_LOCAL 0x4 |
Definition at line 82 of file dlfcn_darwin.h.
#define RTLD_NODELETE 0x80 |
Definition at line 85 of file dlfcn_darwin.h.
#define RTLD_NOLOAD 0x10 |
Definition at line 84 of file dlfcn_darwin.h.
#define RTLD_NOW 0x2 |
Definition at line 81 of file dlfcn_darwin.h.
int dlladdr | ( | void * | , | |
Dl_info * | ||||
) |
int dllclose | ( | void * | handle | ) |
const char* dllerror | ( | void | ) |
void* dllopen | ( | const char * | path, | |
int | mode | |||
) |
void* dllsym | ( | void * | handle, | |
const char * | symbol | |||
) |