Bertho Stultiens | cebb2f1 | 1999-04-18 12:09:21 +0000 | [diff] [blame] | 1 | #ifndef __WINE_ELFDLL_H |
| 2 | #define __WINE_ELFDLL_H |
| 3 | |
| 4 | WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags, DWORD *err); |
| 5 | HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname, BOOL implicit); |
| 6 | void ELFDLL_UnloadLibrary(WINE_MODREF *wm); |
Bertho Stultiens | 3b5c29f | 1999-04-22 09:13:38 +0000 | [diff] [blame] | 7 | |
Marcus Meissner | f070fda | 1999-04-24 12:02:14 +0000 | [diff] [blame] | 8 | #if defined(HAVE_DL_API) |
Bertho Stultiens | 3b5c29f | 1999-04-22 09:13:38 +0000 | [diff] [blame] | 9 | |
Bertho Stultiens | 94bb5bb | 1999-04-19 16:44:22 +0000 | [diff] [blame] | 10 | void *ELFDLL_dlopen(const char *libname, int flags); |
Bertho Stultiens | 3b5c29f | 1999-04-22 09:13:38 +0000 | [diff] [blame] | 11 | extern char *extra_ld_library_path; |
| 12 | |
| 13 | #endif |
Bertho Stultiens | cebb2f1 | 1999-04-18 12:09:21 +0000 | [diff] [blame] | 14 | |
| 15 | #endif |