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
29a96e1e
Commit
29a96e1e
authored
Feb 17, 1999
by
Uwe Bonnes
Committed by
Alexandre Julliard
Feb 17, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change type of mode argument to GETVDMPOINTER32W from DWORD to Word
parent
db4d1c7d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
kernel.spec
if1632/kernel.spec
+1
-1
selector.c
memory/selector.c
+2
-2
No files found.
if1632/kernel.spec
View file @
29a96e1e
...
...
@@ -420,7 +420,7 @@ file krnl386.exe
513 pascal LoadLibraryEx32W(ptr long long) LoadLibraryEx32W16 # Both NT/95
514 pascal16 FreeLibrary32W(long) FreeLibrary32 # Both NT/95
515 pascal GetProcAddress32W(long str) GetProcAddress32 # Both NT/95
516 pascal GetVDMPointer32W(segptr
long
) GetVDMPointer32W # Both NT/95
516 pascal GetVDMPointer32W(segptr
word
) GetVDMPointer32W # Both NT/95
517 pascal CallProc32W() WIN16_CallProc32W # Both NT/95
518 pascal CallProcEx32W() WIN16_CallProcEx32W # Both NT/95
519 stub EXITKERNELTHUNK
...
...
memory/selector.c
View file @
29a96e1e
...
...
@@ -761,9 +761,9 @@ LPVOID WINAPI WOWGetVDMPointer(DWORD vp,DWORD nrofbytes,BOOL32 protected)
/**********************************************************************
* GetVDMPointer32W (KERNEL.516)
*/
LPVOID
WINAPI
GetVDMPointer32W
(
DWORD
vp
,
D
WORD
mode
)
LPVOID
WINAPI
GetVDMPointer32W
(
DWORD
vp
,
WORD
mode
)
{
return
WOWGetVDMPointer
(
vp
,
0
,
mode
);
return
WOWGetVDMPointer
(
vp
,
0
,
(
DWORD
)
mode
);
}
/**********************************************************************
...
...
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