projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Authors: Ove Kaaven <ovek@transgaming.com>, Andrew Lewycky <andrew@transgaming.com...
[wine]
/
include
/
elfdll.h
1
#ifndef __WINE_ELFDLL_H
2
#define __WINE_ELFDLL_H
3
4
#include "config.h"
5
#include "module.h"
6
#include "windef.h"
7
8
WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags);
9
10
#if defined(HAVE_DL_API)
11
12
void *ELFDLL_dlopen(const char *libname, int flags);
13
extern char *extra_ld_library_path;
14
15
#endif
16
17
#endif