annotate loader/wine/elfdll.h @ 29264:e83eef58b30a
Remove all kind of trailing whitespaces from all MPlayer's files.
This affects all kind of spaces (' ',^I,^M,^L,...): actually
[:space:] regex character set.
author |
bircoph |
date |
Wed, 13 May 2009 15:22:13 +0000 |
parents |
a8ea87c71d18 |
children |
4790fe65b11a |
rev |
line source |
26045
|
1 #ifndef MPLAYER_ELFDLL_H
|
|
2 #define MPLAYER_ELFDLL_H
|
1
|
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
|
26045
|
14 #endif /* MPLAYER_ELFDLL_H */
|