kolibrios/programs/develop/ktcc/trunk/libc/include/dlfcn.h
Magomed Kostoev (mkostoevr) 46051e254f Add <dlfcn.h> functions to libck.a (these functions initialize COFF library the same way as dll.inc)
git-svn-id: svn://kolibrios.org@7847 a494cfbc-eb01-0410-851d-a64ba20cac60
2020-04-30 08:47:52 +00:00

14 lines
315 B
C

#ifndef _DLFCN_H
#define _DLFCN_H
#define RTLD_LAZY 0x00001
#define RTLD_NOW 0x00002
#define RTLD_GLOBAL 0x00100
#define RTLD_LOCAL 0
int dlclose(void *handle);
char *dlerror(void);
void *dlopen(const char *name, int mode);
void *dlsym(void *restrict handle, const char *restrict name);
#endif