openal-soft/Alc/compat.h

33 lines
582 B
C
Raw Normal View History

2013-10-28 11:26:26 -07:00
#ifndef AL_COMPAT_H
#define AL_COMPAT_H
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
WCHAR *strdupW(const WCHAR *str);
/* Opens a file with standard I/O. The filename is expected to be UTF-8. */
FILE *al_fopen(const char *fname, const char *mode);
2013-10-28 17:48:48 -07:00
#define HAVE_DYNLOAD 1
2013-10-28 11:26:26 -07:00
#else
#define al_fopen fopen
#if defined(HAVE_DLFCN_H) && !defined(IN_IDE_PARSER)
2013-10-28 11:26:26 -07:00
#define HAVE_DYNLOAD 1
2013-10-28 17:48:48 -07:00
#endif
#endif
#ifdef HAVE_DYNLOAD
2013-10-28 11:26:26 -07:00
void *LoadLib(const char *name);
void CloseLib(void *handle);
void *GetSymbol(void *handle, const char *name);
#endif
#endif /* AL_COMPAT_H */