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"
|
|
|
|
|
2000-03-09 19:18:41 +01:00
|
|
|
WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags);
|
1999-12-04 05:04:58 +01:00
|
|
|
HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname);
|
1999-04-18 14:09:21 +02:00
|
|
|
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
|