annotate loader/wine/elfdll.h @ 33985:d99f341d8442
Replace all mp_dbg() calls by mp_msg().
These messages are useful to track down error causes and should
be available even in a non-debug version of the GUI.
Additionally, remove #ifdef MP_DEBUG which isn't longer needed
in skin.c now.
author |
ib |
date |
Tue, 06 Sep 2011 15:28:53 +0000 |
parents |
4790fe65b11a |
children |
|
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
|
26045
|
13 #endif /* MPLAYER_ELFDLL_H */
|