musl/include/dlfcn.h

43 lines
739 B
C
Raw Normal View History

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
#include <features.h>
#define RTLD_LAZY 1
#define RTLD_NOW 2
#define RTLD_NOLOAD 4
#define RTLD_NODELETE 4096
#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
2013-06-29 16:46:46 +00:00
#define RTLD_DI_LINKMAP 2
2011-02-12 05:22:29 +00:00
int dlclose(void *);
char *dlerror(void);
void *dlopen(const char *, int);
void *dlsym(void *__restrict, const char *__restrict);
2011-02-12 05:22:29 +00:00
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
typedef struct {
const char *dli_fname;
void *dli_fbase;
const char *dli_sname;
void *dli_saddr;
} Dl_info;
int dladdr(void *, Dl_info *);
2013-06-29 16:46:46 +00:00
int dlinfo(void *, int, void *);
#endif
2011-06-27 05:02:28 +00:00
#ifdef __cplusplus
}
#endif
2011-02-12 05:22:29 +00:00
#endif