mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
237e8e95b0
Removed OFSTRUCT passing during process creation sequence. Bugfix: don't set exe_modref when LOAD_LIBRARY_AS_DATAFILE is set.
18 lines
392 B
C
18 lines
392 B
C
#ifndef __WINE_ELFDLL_H
|
|
#define __WINE_ELFDLL_H
|
|
|
|
#include "module.h"
|
|
#include "windef.h"
|
|
|
|
WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags, DWORD *err);
|
|
HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname);
|
|
void ELFDLL_UnloadLibrary(WINE_MODREF *wm);
|
|
|
|
#if defined(HAVE_DL_API)
|
|
|
|
void *ELFDLL_dlopen(const char *libname, int flags);
|
|
extern char *extra_ld_library_path;
|
|
|
|
#endif
|
|
|
|
#endif
|