diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-09-04 22:20:52 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-09-04 22:20:52 +0000 |
commit | 1730adee69d95f0067f2b81937edb741f8d5e848 (patch) | |
tree | b77c60da658cdc8920978854bacc8034b750e632 /winsup/w32api/include/winbase.h | |
parent | ca3a1a6b670e5026c3a1d7435d78e90eb9212616 (diff) | |
download | cygnal-1730adee69d95f0067f2b81937edb741f8d5e848.tar.gz cygnal-1730adee69d95f0067f2b81937edb741f8d5e848.tar.bz2 cygnal-1730adee69d95f0067f2b81937edb741f8d5e848.zip |
2002-09-04 Kevin Chase <kevincha99@hotmail.com>
* include/winbase.h (AllocateUserPhysicalPages,
MapUserPhysicalPages, MapUserPhysicalPagesScatter,
FreeUserPhysicalPages): Add prototypes.
* lib/kernel32.def: Add function stubs for above.
Diffstat (limited to 'winsup/w32api/include/winbase.h')
-rw-r--r-- | winsup/w32api/include/winbase.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/winsup/w32api/include/winbase.h b/winsup/w32api/include/winbase.h index a58becd08..da14bbb09 100644 --- a/winsup/w32api/include/winbase.h +++ b/winsup/w32api/include/winbase.h @@ -1594,6 +1594,12 @@ BOOL WINAPI WriteProfileStringA(LPCSTR,LPCSTR,LPCSTR); BOOL WINAPI WriteProfileStringW(LPCWSTR,LPCWSTR,LPCWSTR); DWORD WINAPI WriteTapemark(HANDLE,DWORD,DWORD,BOOL); #define Yield() +#if (_WIN32_WINNT >= 0x0500) +BOOL WINAPI AllocateUserPhysicalPages(HANDLE,PULONG_PTR,PULONG_PTR); +BOOL WINAPI FreeUserPhysicalPages(HANDLE,PULONG_PTR,PULONG_PTR); +BOOL WINAPI MapUserPhysicalPages(PVOID,ULONG_PTR,PULONG_PTR); +BOOL WINAPI MapUserPhysicalPagesScatter(PVOID*,ULONG_PTR,PULONG_PTR); +#endif #ifdef UNICODE typedef STARTUPINFOW STARTUPINFO,*LPSTARTUPINFO; |