]> git.sesse.net Git - vlc/blob - loader/loader.h
don't use float32 by default (should fix sound issues under windows)
[vlc] / loader / loader.h
1 /********************************************************
2
3         Win32 binary loader interface
4         Copyright 2000 Eugene Kuznetsov (divx@euro.ru)
5         Shamelessly stolen from Wine project
6
7 *********************************************************/
8
9 /*
10  * Modified for use with MPlayer, detailed CVS changelog at
11  * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
12  * $Id$
13  */
14
15 #ifndef _LOADER_H
16 #define _LOADER_H
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 #include "wine/windef.h"
23 #include "wine/driver.h"
24 #include "wine/mmreg.h"
25 #include "wine/vfw.h"
26 #include "wine/msacm.h"
27
28 unsigned int _GetPrivateProfileIntA(const char* appname, const char* keyname, int default_value, const char* filename);
29 int _GetPrivateProfileStringA(const char* appname, const char* keyname,
30         const char* def_val, char* dest, unsigned int len, const char* filename);
31 int _WritePrivateProfileStringA(const char* appname, const char* keyname,
32         const char* string, const char* filename);
33
34 INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id,
35                             LPSTR buffer, INT buflen );
36
37 #ifdef __cplusplus
38 }
39 #endif
40 #endif /* __LOADER_H */
41