File: dlfcn.h

package info (click to toggle)
libdvdread 7.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 824 kB
  • sloc: ansic: 8,241; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef __DLFCN_H__
# define __DLFCN_H__

extern void *dlopen  (const char *file, int mode);
extern int   dlclose (void *handle);
extern void *dlsym   (void * handle, const char * name);
extern char *dlerror (void);

/* These don't mean anything on windows */
#define RTLD_NEXT      ((void *) -1l)
#define RTLD_DEFAULT   ((void *) 0)
#define RTLD_LAZY                                       -1
#define RTLD_NOW                                        -1
#define RTLD_BINDING_MASK -1
#define RTLD_NOLOAD                             -1
#define RTLD_GLOBAL                             -1

#endif /* __DLFCN_H__ */