Mercurial > mplayer.hg
annotate loader/wine/elfdll.h @ 24413:500e245c5425
Consistently use path as multiple inclusion guard.
author | diego |
---|---|
date | Wed, 12 Sep 2007 15:30:22 +0000 |
parents | 93b87066f9da |
children | c98c9e7f3bd0 |
rev | line source |
---|---|
1 | 1 #ifndef __WINE_ELFDLL_H |
2 #define __WINE_ELFDLL_H | |
3 | |
4 #include "module.h" | |
5 #include "windef.h" | |
6 | |
7 WINE_MODREF *ELFDLL_LoadLibraryExA(LPCSTR libname, DWORD flags); | |
8 HINSTANCE16 ELFDLL_LoadModule16(LPCSTR libname); | |
9 void ELFDLL_UnloadLibrary(WINE_MODREF *wm); | |
10 | |
11 void *ELFDLL_dlopen(const char *libname, int flags); | |
12 extern char *extra_ld_library_path; | |
13 | |
24402
93b87066f9da
cosmetics: Add comments to some #endif preprocessor directives.
diego
parents:
1
diff
changeset
|
14 #endif /* __WINE_ELFDLL_H */ |