00001 /* 00002 * Modified for use with MPlayer, detailed CVS changelog at 00003 * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/ 00004 * $Id: driver.h 11593 2005-06-28 18:02:01Z courmisch $ 00005 */ 00006 00007 #ifndef loader_driver_h 00008 #define loader_driver_h 00009 00010 #ifdef __cplusplus 00011 extern "C" { 00012 #endif 00013 00014 #include "wine/windef.h" 00015 #include "wine/driver.h" 00016 00017 void SetCodecPath(const char* path); 00018 void CodecAlloc(void); 00019 void CodecRelease(void); 00020 00021 HDRVR DrvOpen(LPARAM lParam2); 00022 void DrvClose(HDRVR hdrvr); 00023 00024 #ifdef __cplusplus 00025 } 00026 #endif 00027 00028 #endif