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