8 #define WIN32_LEAN_AND_MEAN
11 WCHAR
*strdupW(const WCHAR
*str
);
13 /* Opens a file with standard I/O. The filename is expected to be UTF-8. */
14 FILE *al_fopen(const char *fname
, const char *mode
);
16 #define HAVE_DYNLOAD 1
20 #define al_fopen fopen
22 #if defined(HAVE_DLFCN_H) && !defined(IN_IDE_PARSER)
23 #define HAVE_DYNLOAD 1
28 al_string
GetProcPath(void);
31 void *LoadLib(const char *name
);
32 void CloseLib(void *handle
);
33 void *GetSymbol(void *handle
, const char *name
);
36 #endif /* AL_COMPAT_H */