summaryrefslogtreecommitdiff
path: root/w32/include/dlfcn.h
blob: c95fee2bca322131d5d2ba68110df0bfdbfb0fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* dlfcn.h replacement for MS-Windows build.  */
#ifndef DLFCN_H
#define DLFCN_H

#define RTLD_LAZY   1
#define RTLD_NOW    2
#define RTLD_GLOBAL 4

extern void *dlopen (const char *, int);
extern void *dlsym (void *, const char *);
extern char *dlerror (void);

#endif	/* DLFCN_H */