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
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2001-07-12 15:27:48 +00:00
|
|
|
#ifndef loader_driver_h
|
|
|
|
#define loader_driver_h
|
|
|
|
|
2002-09-13 19:43:17 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2001-07-12 15:27:48 +00:00
|
|
|
|
|
|
|
#endif
|