home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / dlfcn.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  514 b   |  27 lines

  1. #ifndef DLFCN_H
  2. #define DLFCN_H
  3.  
  4. #include <features.h>
  5.  
  6. /*
  7.  * Various defines and so forth for the dynamic linker
  8.  */
  9.  
  10. #define RTLD_LAZY 1
  11. #define RTLD_NOW  2
  12.  
  13. __BEGIN_DECLS
  14.  
  15. /* The usual prototypes.  We use void * instead of the actual
  16.  * datatype - the user does not manipulate the handles at all.
  17.  */
  18.  
  19. extern void * dlopen __P((__const char * __filename, int __flag));
  20. extern __const char * dlerror __P((void));
  21. extern void * dlsym __P((void *, char *));
  22. extern int dlclose __P((void *));
  23.  
  24. __END_DECLS
  25.  
  26. #endif
  27.