Mercurial > mplayer.hg
annotate loader/loader.h @ 26008:bd7f7c851f47
Fix compilation with ASS disabled
author | reimar |
---|---|
date | Wed, 20 Feb 2008 19:03:16 +0000 |
parents | b70f5ac9c001 |
children | a8ea87c71d18 |
rev | line source |
---|---|
1 | 1 /******************************************************** |
2 | |
3 Win32 binary loader interface | |
128 | 4 Copyright 2000 Eugene Kuznetsov (divx@euro.ru) |
1 | 5 Shamelessly stolen from Wine project |
6 | |
7 *********************************************************/ | |
8 | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
9 /* |
18783 | 10 * Modified for use with MPlayer, detailed changelog at |
11 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
12 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
13 |
24422
c98c9e7f3bd0
Remove leading underscores from multiple inclusion guards,
diego
parents:
18783
diff
changeset
|
14 #ifndef LOADER_H |
c98c9e7f3bd0
Remove leading underscores from multiple inclusion guards,
diego
parents:
18783
diff
changeset
|
15 #define LOADER_H |
7386 | 16 |
1 | 17 #ifdef __cplusplus |
18 extern "C" { | |
19 #endif | |
20 | |
7386 | 21 #include "wine/windef.h" |
22 #include "wine/driver.h" | |
23 #include "wine/mmreg.h" | |
24 #include "wine/vfw.h" | |
25 #include "wine/msacm.h" | |
1494 | 26 |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
27 unsigned int GetPrivateProfileIntA_(const char* appname, const char* keyname, int default_value, const char* filename); |
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
28 int GetPrivateProfileStringA_(const char* appname, const char* keyname, |
1 | 29 const char* def_val, char* dest, unsigned int len, const char* filename); |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
30 int WritePrivateProfileStringA_(const char* appname, const char* keyname, |
1 | 31 const char* string, const char* filename); |
32 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
33 INT WINAPI LoadStringA( HINSTANCE instance, UINT resource_id, |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
34 LPSTR buffer, INT buflen ); |
128 | 35 |
1 | 36 #ifdef __cplusplus |
37 } | |
38 #endif | |
39 | |
24422
c98c9e7f3bd0
Remove leading underscores from multiple inclusion guards,
diego
parents:
18783
diff
changeset
|
40 #endif /* LOADER_H */ |