1 #ifndef CLIB_DYNLOAD_PROTOS_H
    2 #define CLIB_DYNLOAD_PROTOS_H
    3 
    4 /*
    5 	dynload.library C prototypes
    6 
    7 	Copyright © 2005 The MorphOS Development Team, All Rights Reserved.
    8 */
    9 
   10 #ifndef LIBRARIES_DYNLOAD_H
   11 # include <libraries/dynload.h>
   12 #endif
   13 
   14 #ifdef __cplusplus
   15 extern "C" {
   16 #endif
   17 
   18 void *dlopen(const char *, int);
   19 int dlclose(void *);
   20 void *dlsym(void *, const char *);
   21 int dladdr(const void *, Dl_info *);
   22 const char *dlerror(void);
   23 
   24 #ifdef __cplusplus
   25 }
   26 #endif
   27 
   28 #endif /* CLIB_DYNLOAD_PROTOS_H */