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
|
|
|
|
|
2012-09-07 02:44:55 +00:00
|
|
|
#if __STDC_VERSION__ >= 199901L
|
|
|
|
#define __restrict restrict
|
|
|
|
#elif !defined(__GNUC__)
|
|
|
|
#define __restrict
|
|
|
|
#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);
|
2012-09-07 02:44:55 +00:00
|
|
|
void *dlsym(void *__restrict, const char *__restrict);
|
2011-02-12 05:22:29 +00:00
|
|
|
|
2012-08-27 01:09:26 +00:00
|
|
|
#ifdef _GNU_SOURCE
|
|
|
|
typedef struct {
|
|
|
|
const char *dli_fname;
|
|
|
|
void *dli_fbase;
|
|
|
|
const char *dli_sname;
|
|
|
|
void *dli_saddr;
|
|
|
|
} Dl_info;
|
|
|
|
int dladdr(void *, Dl_info *);
|
|
|
|
#endif
|
|
|
|
|
2011-06-27 05:02:28 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|