Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
98b5f77f
Commit
98b5f77f
authored
Jul 27, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Jul 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added IsBadFlatReadWritePtr16().
parent
6e013e5c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
kernel.spec
if1632/kernel.spec
+1
-1
selector.c
memory/selector.c
+10
-0
No files found.
if1632/kernel.spec
View file @
98b5f77f
...
...
@@ -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
...
...
memory/selector.c
View file @
98b5f77f
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment