comparison loader/ext.h @ 28051:9e739bdb049c

Get rid of pointless 'extern' keywords.
author diego
date Wed, 03 Dec 2008 23:01:03 +0000
parents a8ea87c71d18
children
comparison
equal deleted inserted replaced
28050:7e53b0b71b18 28051:9e739bdb049c
6 #ifndef MPLAYER_EXT_H 6 #ifndef MPLAYER_EXT_H
7 #define MPLAYER_EXT_H 7 #define MPLAYER_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 LPVOID FILE_dommap( int unix_handle, LPVOID start,
12 DWORD size_high, DWORD size_low, 12 DWORD size_high, DWORD size_low,
13 DWORD offset_high, DWORD offset_low, 13 DWORD offset_high, DWORD offset_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 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 int wcsnicmp( const unsigned short* s1, const unsigned short* s2, int n );
17 extern int __vprintf( const char *format, ... ); 17 int __vprintf( const char *format, ... );
18 18
19 #endif /* MPLAYER_EXT_H */ 19 #endif /* MPLAYER_EXT_H */