00001
00002
00003
00004
00005
00006
00007 #ifndef loader_ext_h
00008 #define loader_ext_h
00009
00010 #include "wine/windef.h"
00011
00012 extern LPVOID FILE_dommap( int unix_handle, LPVOID start,
00013 DWORD size_high, DWORD size_low,
00014 DWORD offset_high, DWORD offset_low,
00015 int prot, int flags );
00016 extern int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low );
00017 extern int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n);
00018 extern int __vprintf( const char *format, ... );
00019
00020 #endif