Mercurial > mplayer.hg
annotate loader/driver.h @ 7386:174e2a58b4cd
avifile sync - 95% cosmetics 5% bug
author | arpi |
---|---|
date | Fri, 13 Sep 2002 19:43:17 +0000 |
parents | ce45cce7f7a5 |
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 |