Mercurial > mplayer.hg
annotate loader/driver.h @ 24334:f1d07df31307
r24216: Add missed in r24212 strings definitions
r24327: fix broken MinGW-Howto link
r24293: remove planned features, ok by diego
r24310: Support for selecting language via packet 28.
r24341: Move debug message to verbose output level.
r24342: Matroska muxer now available in libavformat.
r24344: Remove technical description of DVDs and libdvdread implementation.
r24346: Replace short region code explanation by more detailed section.
author | voroshil |
---|---|
date | Thu, 06 Sep 2007 20:03:01 +0000 |
parents | 0783dd397f74 |
children | 53ca44efadce |
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 |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
7 #ifndef loader_driver_h |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
8 #define loader_driver_h |
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 |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
28 #endif |