root/libs/loader/driver.h

Revision dcfd2c71c6e196ca7228a1efaa311ebb464c4ec6, 450 bytes (checked in by Rafaël Carré <funman@videolan.org>, 1 year ago)

Revert previous commit for loader as it is external to vlc

  • Property mode set to 100644
Line 
1 /*
2  * Modified for use with MPlayer, detailed CVS changelog at
3  * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
4  * $Id$
5  */
6
7 #ifndef loader_driver_h
8 #define loader_driver_h
9
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13
14 #include "wine/windef.h"
15 #include "wine/driver.h"
16
17 void SetCodecPath(const char* path);
18 void CodecAlloc(void);
19 void CodecRelease(void);
20
21 HDRVR DrvOpen(LPARAM lParam2);
22 void DrvClose(HDRVR hdrvr);
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28 #endif
Note: See TracBrowser for help on using the browser.