blob: 94bfef8fd1e61f58c7f61aac798463100d806722 [file] [log] [blame]
Bertho Stultienscebb2f11999-04-18 12:09:21 +00001#ifndef __WINE_ELFDLL_H
2#define __WINE_ELFDLL_H
3
4WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags, DWORD *err);
5HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname, BOOL implicit);
6void ELFDLL_UnloadLibrary(WINE_MODREF *wm);
Bertho Stultiens3b5c29f1999-04-22 09:13:38 +00007
Marcus Meissnerf070fda1999-04-24 12:02:14 +00008#if defined(HAVE_DL_API)
Bertho Stultiens3b5c29f1999-04-22 09:13:38 +00009
Bertho Stultiens94bb5bb1999-04-19 16:44:22 +000010void *ELFDLL_dlopen(const char *libname, int flags);
Bertho Stultiens3b5c29f1999-04-22 09:13:38 +000011extern char *extra_ld_library_path;
12
13#endif
Bertho Stultienscebb2f11999-04-18 12:09:21 +000014
15#endif