Skip to content
Snippets Groups Projects
Commit 0aaedb35 authored by Chris Wolf's avatar Chris Wolf
Browse files

Define some more dummy dlopen flags for win32

git-svn-id: http://svn.xiph.org/trunk/ao@1972 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent d98c317d
No related branches found
No related tags found
No related merge requests found
#ifndef __DLFCN_H__
# define __DLFCN_H__
/*
* $Id: dlfcn.h,v 1.1 2001/09/05 19:10:00 cwolf Exp $
* $Id: dlfcn.h,v 1.2 2001/09/05 19:48:03 cwolf Exp $
* $Name: $
*
*
......@@ -11,6 +11,13 @@ extern int dlclose (void *handle);
extern void *dlsym (void * handle, const char * name);
extern char *dlerror (void);
#define RTLD_NOW 0
/* 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__ */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment