Commit 98b5f77f authored by Ulrich Weigand's avatar Ulrich Weigand Committed by Alexandre Julliard

Added IsBadFlatReadWritePtr16().

parent 6e013e5c
......@@ -496,7 +496,7 @@ file krnl386.exe
624 pascal SetFastQueue(long long) SetFastQueue16
625 pascal GetFastQueue() GetFastQueue16
626 stub SmashEnvironment
627 stub IsBadFlatReadWritePtr
627 pascal16 IsBadFlatReadWritePtr(segptr long word) IsBadFlatReadWritePtr16
630 register C16ThkSL() C16ThkSL
631 register C16ThkSL01() C16ThkSL01
651 pascal ThunkConnect16(str str word long ptr str word) ThunkConnect16
......
......@@ -502,6 +502,16 @@ BOOL16 WINAPI IsBadWritePtr16( SEGPTR ptr, UINT16 size )
/***********************************************************************
* IsBadFlatReadWritePtr16 (KERNEL.627)
*/
BOOL16 WINAPI IsBadFlatReadWritePtr16( SEGPTR ptr, DWORD size, BOOL16 bWrite )
{
return bWrite? IsBadHugeWritePtr16( ptr, size )
: IsBadHugeReadPtr16( ptr, size );
}
/***********************************************************************
* MemoryRead (TOOLHELP.78)
*/
DWORD WINAPI MemoryRead16( WORD sel, DWORD offset, void *buffer, DWORD count )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment