Add support for extracting the release version number from a VERSION file.
[mplayer/glamo.git] / loader / drv.h
blobb064b46802b7d9e8b645d445ed3abe8d8f257a34
1 /*
2 * Modified for use with MPlayer, detailed changelog at
3 * http://svn.mplayerhq.hu/mplayer/trunk/
4 */
6 #ifndef MPLAYER_DRV_H
7 #define MPLAYER_DRV_H
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
13 #include "wine/windef.h"
14 #include "wine/driver.h"
16 void SetCodecPath(const char* path);
17 void CodecAlloc(void);
18 void CodecRelease(void);
20 HDRVR DrvOpen(LPARAM lParam2);
21 void DrvClose(HDRVR hdrvr);
23 #ifdef __cplusplus
25 #endif
27 #endif /* MPLAYER_DRV_H */