2 * @(#)dlfcn.h 1.4 revision of 95/04/25 09:36:52
3 * This is an unpublished work copyright (c) 1992 HELIOS Software GmbH
4 * 30159 Hannover, Germany
15 * Mode flags for the dlopen routine.
17 #define RTLD_LAZY 1 /* lazy function call binding */
18 #define RTLD_NOW 2 /* immediate function call binding */
19 #define RTLD_GLOBAL 0x100 /* allow symbols to be global */
22 * To be able to initialize, a library may provide a dl_info structure
23 * that contains functions to be called to initialize and terminate.
30 #if __STDC__ || defined(_IBMR2)
31 void *dlopen(const char *path
, int mode
);
32 void *dlsym(void *handle
, const char *symbol
);
34 int dlclose(void *handle
);
46 #endif /* __dlfcn_h__ */