2005-04-15 20:17:14 +00:00
|
|
|
/*
|
2006-06-22 13:34:00 +00:00
|
|
|
* Modified for use with MPlayer, detailed changelog at
|
|
|
|
* http://svn.mplayerhq.hu/mplayer/trunk/
|
2005-04-15 20:17:14 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-08 10:43:30 +00:00
|
|
|
#ifndef MPLAYER_DRV_H
|
|
|
|
#define MPLAYER_DRV_H
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2002-09-13 19:43:17 +00:00
|
|
|
#include "wine/windef.h"
|
|
|
|
#include "wine/driver.h"
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2002-09-13 19:43:17 +00:00
|
|
|
void SetCodecPath(const char* path);
|
|
|
|
void CodecAlloc(void);
|
|
|
|
void CodecRelease(void);
|
|
|
|
|
|
|
|
HDRVR DrvOpen(LPARAM lParam2);
|
|
|
|
void DrvClose(HDRVR hdrvr);
|
|
|
|
|
2008-06-08 10:43:30 +00:00
|
|
|
#endif /* MPLAYER_DRV_H */
|