Moved X input event handling out of EVENT_WaitNetEvent and into
[wine] / include / elfdll.h
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);
7
8 #if defined(HAVE_DL_API)
9
10 void *ELFDLL_dlopen(const char *libname, int flags);
11 extern char *extra_ld_library_path;
12
13 #endif
14
15 #endif