Initial commit, 3-52-19 alpha
[cls.git] / src / c / mswin / dlfcn.h
blobd6c9569ace0b821d17e0379cfc4595bec5f2bbf7
1 #define RTLD_LAZY 0
2 #define RTLD_NOW 1
4 void *dlopen(const char *, int);
5 void *dlsym(void *, const char *);
6 int dlclose(void *);
7 char *dlerror(void);