Fix vf_tcdump's compilation
[mplayer/kovensky.git] / loader / loader.h
blob48778e188227b223711f6c2d1022dd45144e758a
1 /********************************************************
3 Win32 binary loader interface
4 Copyright 2000 Eugene Kuznetsov (divx@euro.ru)
5 Shamelessly stolen from Wine project
7 *********************************************************/
9 /*
10 * Modified for use with MPlayer, detailed changelog at
11 * http://svn.mplayerhq.hu/mplayer/trunk/
14 #ifndef MPLAYER_LOADER_H
15 #define MPLAYER_LOADER_H
17 #include "wine/windef.h"
18 #include "wine/driver.h"
19 #include "wine/mmreg.h"
20 #include "wine/vfw.h"
21 #include "wine/msacm.h"
23 unsigned int GetPrivateProfileIntA_(const char* appname, const char* keyname, int default_value, const char* filename);
24 int GetPrivateProfileStringA_(const char* appname, const char* keyname,
25 const char* def_val, char* dest, unsigned int len, const char* filename);
26 int WritePrivateProfileStringA_(const char* appname, const char* keyname,
27 const char* string, const char* filename);
29 INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id,
30 LPSTR buffer, INT buflen );
32 #endif /* MPLAYER_LOADER_H */