Go to the source code of this file.
Defines | |
#define | RTLD_DEFAULT 0 |
#define | RTLD_GLOBAL (1 << 1) |
#define | RTLD_LAZY 0 |
#define | RTLD_LOCAL (1 << 2) |
#define | RTLD_NEXT 0 |
#define | RTLD_NOW 0 |
Functions | |
int | dlclose (void *handle) |
char * | dlerror (void) |
void * | dlopen (const char *file, int mode) |
void * | dlsym (void *handle, const char *name) |
#define RTLD_DEFAULT 0 |
Definition at line 37 of file dlfcn-win32.h.
#define RTLD_GLOBAL (1 << 1) |
Definition at line 30 of file dlfcn-win32.h.
#define RTLD_LAZY 0 |
Definition at line 27 of file dlfcn-win32.h.
#define RTLD_LOCAL (1 << 2) |
Definition at line 31 of file dlfcn-win32.h.
#define RTLD_NEXT 0 |
Definition at line 38 of file dlfcn-win32.h.
#define RTLD_NOW 0 |
Definition at line 28 of file dlfcn-win32.h.
int dlclose | ( | void * | handle | ) |
Definition at line 242 of file dlfcn-win32.cpp.
char* dlerror | ( | void | ) |
Definition at line 307 of file dlfcn-win32.cpp.
void* dlopen | ( | const char * | file, | |
int | mode | |||
) |
Definition at line 172 of file dlfcn-win32.cpp.
void* dlsym | ( | void * | handle, | |
const char * | name | |||
) |
Definition at line 265 of file dlfcn-win32.cpp.