Mercurial > mplayer.hg
annotate loader/driver.h @ 12443:ae4ae7ab636c
ENCA support (http://trific.ath.cx/software/enca/)
author | henry |
---|---|
date | Sat, 08 May 2004 17:52:25 +0000 |
parents | 174e2a58b4cd |
children | f5537cc95b02 |
rev | line source |
---|---|
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
1 #ifndef loader_driver_h |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
2 #define loader_driver_h |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
3 |
7386 | 4 #ifdef __cplusplus |
5 extern "C" { | |
6 #endif | |
7 | |
8 #include "wine/windef.h" | |
9 #include "wine/driver.h" | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
10 |
7386 | 11 void SetCodecPath(const char* path); |
12 void CodecAlloc(void); | |
13 void CodecRelease(void); | |
14 | |
15 HDRVR DrvOpen(LPARAM lParam2); | |
16 void DrvClose(HDRVR hdrvr); | |
17 | |
18 #ifdef __cplusplus | |
19 } | |
20 #endif | |
1307
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
21 |
d8c1b0b38edc
Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff
changeset
|
22 #endif |