Mercurial > mplayer.hg
annotate loader/driver.h @ 24616:cb9e7a138b6e
r21897: Rephrase mga_vid section.
r21930: gcc_bug++;
r22129: Link to the mencoder-users list for mencoder stuff
r22140: vp6vfw.dll appears to no longer crash under Linux.
author | kraymer |
---|---|
date | Thu, 27 Sep 2007 21:53:57 +0000 |
parents | 53ca44efadce |
children | b70f5ac9c001 |
rev | line source |
---|---|
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
1 /* |
18783 | 2 * Modified for use with MPlayer, detailed changelog at |
3 * http://svn.mplayerhq.hu/mplayer/trunk/ | |
15166
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
4 * $Id$ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
5 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
6 |
24419
53ca44efadce
cosmetics: Use uppercase for multiple inclusion guards and comment #endifs.
diego
parents:
18783
diff
changeset
|
7 #ifndef LOADER_DRIVER_H |
53ca44efadce
cosmetics: Use uppercase for multiple inclusion guards and comment #endifs.
diego
parents:
18783
diff
changeset
|
8 #define LOADER_DRIVER_H |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
9 |
7386 | 10 #ifdef __cplusplus |
11 extern "C" { | |
12 #endif | |
13 | |
14 #include "wine/windef.h" | |
15 #include "wine/driver.h" | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
16 |
7386 | 17 void SetCodecPath(const char* path); |
18 void CodecAlloc(void); | |
19 void CodecRelease(void); | |
20 | |
21 HDRVR DrvOpen(LPARAM lParam2); | |
22 void DrvClose(HDRVR hdrvr); | |
23 | |
24 #ifdef __cplusplus | |
25 } | |
26 #endif | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
27 |
24419
53ca44efadce
cosmetics: Use uppercase for multiple inclusion guards and comment #endifs.
diego
parents:
18783
diff
changeset
|
28 #endif /* LOADER_DRIVER_H */ |