annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15166
f5537cc95b02 Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents: 7386
diff changeset
1 /*
18783
0783dd397f74 CVS --> Subversion in copyright notices
diego
parents: 15166
diff changeset
2 * Modified for use with MPlayer, detailed changelog at
0783dd397f74 CVS --> Subversion in copyright notices
diego
parents: 15166
diff changeset
3 * http://svn.mplayerhq.hu/mplayer/trunk/
15166
f5537cc95b02 Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents: 7386
diff changeset
4 */
f5537cc95b02 Mark modified imported files as such to comply with GPL ¡ø2a.
diego
parents: 7386
diff changeset
5
25869
246221f7ba2e Consistently use uppercase filename as multiple inclusion guard.
diego
parents: 25849
diff changeset
6 #ifndef LOADER_EXT_H
246221f7ba2e Consistently use uppercase filename as multiple inclusion guard.
diego
parents: 25849
diff changeset
7 #define LOADER_EXT_H
1307
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
8
7386
174e2a58b4cd avifile sync - 95% cosmetics 5% bug
arpi
parents: 2139
diff changeset
9 #include "wine/windef.h"
1307
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
10
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
11 extern LPVOID FILE_dommap( int unix_handle, LPVOID start,
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
12 DWORD size_high, DWORD size_low,
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
13 DWORD offset_high, DWORD offset_low,
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
14 int prot, int flags );
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
15 extern int FILE_munmap( LPVOID start, DWORD size_high, DWORD size_low );
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
16 extern int wcsnicmp(const unsigned short* s1, const unsigned short* s2, int n);
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
17 extern int __vprintf( const char *format, ... );
d8c1b0b38edc Add prototypes to wine/loader stuff, so that we can catch __stdcall function
jkeil
parents:
diff changeset
18
25869
246221f7ba2e Consistently use uppercase filename as multiple inclusion guard.
diego
parents: 25849
diff changeset
19 #endif /* LOADER_EXT_H */