Mercurial > mplayer.hg
annotate loader/loader.h @ 30985:76e1dd50dccf
Add some fallback OpenGL defines to fix compilation on Windows.
author | reimar |
---|---|
date | Wed, 07 Apr 2010 19:36:23 +0000 |
parents | 26f673ba0675 |
children | db0bb7511440 |
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 |
26045 | 14 #ifndef MPLAYER_LOADER_H |
15 #define MPLAYER_LOADER_H | |
7386 | 16 |
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" | |
1494 | 22 |
25794
2c8cdb9123b8
Fix a ton of illegal identifiers. Identifiers starting with __ or _ and a
diego
parents:
24422
diff
changeset
|
23 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
|
24 int GetPrivateProfileStringA_(const char* appname, const char* keyname, |
1 | 25 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
|
26 int WritePrivateProfileStringA_(const char* appname, const char* keyname, |
1 | 27 const char* string, const char* filename); |
28 | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
128
diff
changeset
|
29 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
|
30 LPSTR buffer, INT buflen ); |
128 | 31 |
26045 | 32 #endif /* MPLAYER_LOADER_H */ |