comparison loader/drv.h @ 26999:0b21ffa03b9c

Rename loader/driver.[ch] to loader/drv.[ch], otherwise loader/driver.h can conflict with the header by the same name in loader/wine/driver.h.
author diego
date Sun, 08 Jun 2008 10:43:30 +0000
parents
children 26f673ba0675
comparison
equal deleted inserted replaced
26998:29bfddf7af0a 26999:0b21ffa03b9c
1 /*
2 * Modified for use with MPlayer, detailed changelog at
3 * http://svn.mplayerhq.hu/mplayer/trunk/
4 */
5
6 #ifndef MPLAYER_DRV_H
7 #define MPLAYER_DRV_H
8
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12
13 #include "wine/windef.h"
14 #include "wine/driver.h"
15
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
26
27 #endif /* MPLAYER_DRV_H */