Added our dlfcn.h header - the RTLD_xxx constants may change, though.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2418 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-01-12 16:15:49 +00:00
parent 6cdae891c3
commit 909f4951dd
1 changed files with 29 additions and 0 deletions

29
headers/posix/dlfcn.h Normal file
View File

@ -0,0 +1,29 @@
#ifndef _DLFCN_H
#define _DLFCN_H
/*
** Distributed under the terms of the OpenBeOS License.
*/
#include <sys/types.h>
#define RTLD_LAZY 0 /* relocations are performed as needed */
#define RTLD_NOW 1 /* the file gets relocated at load time */
#define RTLD_LOCAL 0 /* symbols are not available for relocating any other object */
#define RTLD_GLOBAL 2 /* all symbols are available */
#ifdef __cplusplus
extern "C" {
#endif
extern int dlclose(void *image);
extern char *dlerror(void);
extern void *dlopen(const char *path, int mode);
extern void *dlsym(void *image, const char *symbolName);
#ifdef __cplusplus
}
#endif
#endif /* _DLFCN_H */