Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _DLFCN_H
  2. #define _DLFCN_H
  3.  
  4. #define RTLD_LAZY       0x00001
  5. #define RTLD_NOW        0x00002
  6. #define RTLD_GLOBAL     0x00100
  7. #define RTLD_LOCAL      0
  8.  
  9. int    dlclose(void *handle);
  10. char  *dlerror(void);
  11. void  *dlopen(const char *name, int mode);
  12. void  *dlsym(void *restrict handle, const char *restrict name);
  13.  
  14. #endif