view loader/ext.h @ 15441:bc4bcea4c813

added x264enc options: direct_pred, log, (no)deblock deblock{alpha,beta}, (no)cabac, qp_{min,max} 1.933: misc corrections and clarifications in x264 options. 1.934: remove x264 option "cabacidc", because the default is always best. 1.935: Online audio switching now supports Matroska too
author kraymer
date Fri, 13 May 2005 20:19:01 +0000 (2005-05-13)
parents f5537cc95b02
children 0783dd397f74
line wrap: on
line source
/*
 * Modified for use with MPlayer, detailed CVS changelog at
 * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
 * $Id$
 */

#ifndef loader_ext_h
#define loader_ext_h

#include "wine/windef.h"

extern LPVOID FILE_dommap( int unix_handle, LPVOID start,
			   DWORD size_high, DWORD size_low,
			   DWORD offset_high, DWORD offset_low,
			   int prot, int flags );
extern int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low );
extern int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n);
extern int __vprintf( const char *format, ... );

#endif