2005-04-15 20:17:14 +00:00
|
|
|
/*
|
2006-06-22 13:34:00 +00:00
|
|
|
* Modified for use with MPlayer, detailed changelog at
|
|
|
|
* http://svn.mplayerhq.hu/mplayer/trunk/
|
2005-04-15 20:17:14 +00:00
|
|
|
*/
|
|
|
|
|
2008-02-23 14:50:55 +00:00
|
|
|
#ifndef MPLAYER_EXT_H
|
|
|
|
#define MPLAYER_EXT_H
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2002-09-13 19:43:17 +00:00
|
|
|
#include "wine/windef.h"
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2008-12-03 23:01:03 +00:00
|
|
|
LPVOID FILE_dommap( int unix_handle, LPVOID start,
|
|
|
|
DWORD size_high, DWORD size_low,
|
|
|
|
DWORD offset_high, DWORD offset_low,
|
|
|
|
int prot, int flags );
|
|
|
|
int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low );
|
|
|
|
int wcsnicmp( const unsigned short* s1, const unsigned short* s2, int n );
|
|
|
|
int __vprintf( const char *format, ... );
|
2001-07-12 15:27:48 +00:00
|
|
|
|
2008-02-23 14:50:55 +00:00
|
|
|
#endif /* MPLAYER_EXT_H */
|