1999-04-18 14:09:21 +02:00
|
|
|
#ifndef __WINE_ELFDLL_H
|
|
|
|
#define __WINE_ELFDLL_H
|
|
|
|
|
1999-06-26 16:58:24 +02:00
|
|
|
#include "module.h"
|
|
|
|
#include "windef.h"
|
|
|
|
|
1999-04-18 14:09:21 +02:00
|
|
|
WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags, DWORD *err);
|
|
|
|
HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname, BOOL implicit);
|
|
|
|
void ELFDLL_UnloadLibrary(WINE_MODREF *wm);
|
1999-04-22 11:13:38 +02:00
|
|
|
|
1999-04-24 14:02:14 +02:00
|
|
|
#if defined(HAVE_DL_API)
|
1999-04-22 11:13:38 +02:00
|
|
|
|
1999-04-19 18:44:22 +02:00
|
|
|
void *ELFDLL_dlopen(const char *libname, int flags);
|
1999-04-22 11:13:38 +02:00
|
|
|
extern char *extra_ld_library_path;
|
|
|
|
|
|
|
|
#endif
|
1999-04-18 14:09:21 +02:00
|
|
|
|
|
|
|
#endif
|