Mercurial > mplayer.hg
annotate loader/driver.h @ 26818:089ac698f8b1
Avoid crash with video stream switching and -nosound
author | reimar |
---|---|
date | Wed, 21 May 2008 20:46:05 +0000 |
parents | a8ea87c71d18 |
children |
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 */ |
f5537cc95b02
Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents:
7386
diff
changeset
|
5 |
26045 | 6 #ifndef MPLAYER_DRIVER_H |
7 #define MPLAYER_DRIVER_H | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
8 |
7386 | 9 #ifdef __cplusplus |
10 extern "C" { | |
11 #endif | |
12 | |
13 #include "wine/windef.h" | |
14 #include "wine/driver.h" | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
15 |
7386 | 16 void SetCodecPath(const char* path); |
17 void CodecAlloc(void); | |
18 void CodecRelease(void); | |
19 | |
20 HDRVR DrvOpen(LPARAM lParam2); | |
21 void DrvClose(HDRVR hdrvr); | |
22 | |
23 #ifdef __cplusplus | |
24 } | |
25 #endif | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
26 |
26045 | 27 #endif /* MPLAYER_DRIVER_H */ |