mirror of
https://github.com/mpv-player/mpv
synced 2024-11-14 22:48:35 +01:00
a743c0a738
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30930 b3059339-0415-0410-9bf9-f77b7e298cf2
19 lines
338 B
C
19 lines
338 B
C
/*
|
|
* Modified for use with MPlayer, detailed changelog at
|
|
* http://svn.mplayerhq.hu/mplayer/trunk/
|
|
*/
|
|
|
|
#ifndef MPLAYER_DRV_H
|
|
#define MPLAYER_DRV_H
|
|
|
|
#include "wine/windef.h"
|
|
#include "wine/driver.h"
|
|
|
|
void CodecAlloc(void);
|
|
void CodecRelease(void);
|
|
|
|
HDRVR DrvOpen(LPARAM lParam2);
|
|
void DrvClose(HDRVR hdrvr);
|
|
|
|
#endif /* MPLAYER_DRV_H */
|