gl_common: minor cleanup/refactor
[mplayer.git] / loader / loader.h
blobfa432e0294ee92f4e5ea5799fb9dfde57cc85b8e
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"
22 #include "wine/module.h"
25 extern modref_list* local_wm;
27 unsigned int GetPrivateProfileIntA_(const char* appname, const char* keyname, int default_value, const char* filename);
28 int GetPrivateProfileStringA_(const char* appname, const char* keyname,
29 const char* def_val, char* dest, unsigned int len, const char* filename);
30 int WritePrivateProfileStringA_(const char* appname, const char* keyname,
31 const char* string, const char* filename);
33 INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id,
34 LPSTR buffer, INT buflen );
36 #endif /* MPLAYER_LOADER_H */