6 #define WIN32_LEAN_AND_MEAN
9 WCHAR
*strdupW(const WCHAR
*str
);
11 /* Opens a file with standard I/O. The filename is expected to be UTF-8. */
12 FILE *al_fopen(const char *fname
, const char *mode
);
14 #define HAVE_DYNLOAD 1
18 #define al_fopen fopen
20 #if defined(HAVE_DLFCN_H) && !defined(IN_IDE_PARSER)
21 #define HAVE_DYNLOAD 1
27 void *LoadLib(const char *name
);
28 void CloseLib(void *handle
);
29 void *GetSymbol(void *handle
, const char *name
);
32 #endif /* AL_COMPAT_H */