Mercurial > mplayer.hg
annotate loader/driver.h @ 11994:a7751694c177
spp softthresholding in mmx
author | michael |
---|---|
date | Tue, 24 Feb 2004 13:28:42 +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 |