home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / positrtl.zip / dlfcn.h < prev    next >
Text File  |  1998-12-12  |  478b  |  25 lines

  1. /*
  2.  * Copyright 1998 Antony T Curtis <antony.curtis@olcs.net>
  3.  * Use restricted to and permitted only for OS/2. Minimum royalty 
  4.  * for use on Microsoft platforms at $1000 per annum per seat.
  5.  */
  6. #ifndef _DLFCN_H_
  7. #define _DLFCN_H_
  8.  
  9. #if defined (__cplusplus)
  10. extern "C" {
  11. #endif
  12.  
  13.  
  14. void *    dlopen(char *, int);
  15. char *    dlerror(void);
  16. void    dlclose(void *);
  17. void (*    dlsym(void *, char *))(void);
  18.  
  19. /* __END_DECLS */
  20.  
  21. #if defined (__cplusplus)
  22. }
  23. #endif
  24. #endif
  25.