comparison loader/ext.h @ 25869:246221f7ba2e

Consistently use uppercase filename as multiple inclusion guard.
author diego
date Mon, 28 Jan 2008 01:32:52 +0000
parents b70f5ac9c001
children a8ea87c71d18
comparison
equal deleted inserted replaced
25868:c36c43253806 25869:246221f7ba2e
1 /* 1 /*
2 * Modified for use with MPlayer, detailed changelog at 2 * Modified for use with MPlayer, detailed changelog at
3 * http://svn.mplayerhq.hu/mplayer/trunk/ 3 * http://svn.mplayerhq.hu/mplayer/trunk/
4 */ 4 */
5 5
6 #ifndef loader_ext_h 6 #ifndef LOADER_EXT_H
7 #define loader_ext_h 7 #define LOADER_EXT_H
8 8
9 #include "wine/windef.h" 9 #include "wine/windef.h"
10 10
11 extern LPVOID FILE_dommap( int unix_handle, LPVOID start, 11 extern LPVOID FILE_dommap( int unix_handle, LPVOID start,
12 DWORD size_high, DWORD size_low, 12 DWORD size_high, DWORD size_low,
14 int prot, int flags ); 14 int prot, int flags );
15 extern int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low ); 15 extern int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low );
16 extern int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n); 16 extern int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n);
17 extern int __vprintf( const char *format, ... ); 17 extern int __vprintf( const char *format, ... );
18 18
19 #endif /* loader_ext_h */ 19 #endif /* LOADER_EXT_H */