2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _DLFCN_H
|
|
|
|
#define _DLFCN_H
|
|
|
|
|
2011-06-27 05:02:28 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-06-27 05:01:19 +00:00
|
|
|
#define RTLD_LAZY 1
|
|
|
|
#define RTLD_NOW 2
|
|
|
|
#define RTLD_GLOBAL 256
|
|
|
|
#define RTLD_LOCAL 0
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2011-06-27 05:02:28 +00:00
|
|
|
#define RTLD_NEXT ((void *)-1)
|
|
|
|
#define RTLD_DEFAULT ((void *)0)
|
2011-02-12 05:22:29 +00:00
|
|
|
|
|
|
|
int dlclose(void *);
|
|
|
|
char *dlerror(void);
|
|
|
|
void *dlopen(const char *, int);
|
|
|
|
void *dlsym(void *, const char *);
|
|
|
|
|
2011-06-27 05:02:28 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|