view loader/driver.h @ 24334:f1d07df31307

r24216: Add missed in r24212 strings definitions r24327: fix broken MinGW-Howto link r24293: remove planned features, ok by diego r24310: Support for selecting language via packet 28. r24341: Move debug message to verbose output level. r24342: Matroska muxer now available in libavformat. r24344: Remove technical description of DVDs and libdvdread implementation. r24346: Replace short region code explanation by more detailed section.
author voroshil
date Thu, 06 Sep 2007 20:03:01 +0000
parents 0783dd397f74
children 53ca44efadce
line wrap: on
line source

/*
 * Modified for use with MPlayer, detailed changelog at
 * http://svn.mplayerhq.hu/mplayer/trunk/
 * $Id$
 */

#ifndef loader_driver_h
#define	loader_driver_h

#ifdef __cplusplus
extern "C" {
#endif

#include "wine/windef.h"
#include "wine/driver.h"

void SetCodecPath(const char* path);
void CodecAlloc(void);
void CodecRelease(void);

HDRVR DrvOpen(LPARAM lParam2);
void DrvClose(HDRVR hdrvr);

#ifdef __cplusplus
}
#endif

#endif