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
911d6d3c
Commit
911d6d3c
authored
Oct 20, 2010
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vmm.vxd: Avoid using the CONTEXT86 type.
parent
f14d522f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vmm.c
dlls/vmm.vxd/vmm.c
+2
-2
No files found.
dlls/vmm.vxd/vmm.c
View file @
911d6d3c
...
...
@@ -120,7 +120,7 @@ static const char * const VMM_Service_Name[N_VMM_SERVICE] =
/* Pop a DWORD from the 32-bit stack */
static
inline
DWORD
stack32_pop
(
CONTEXT
86
*
context
)
static
inline
DWORD
stack32_pop
(
CONTEXT
*
context
)
{
DWORD
ret
=
*
(
DWORD
*
)
context
->
Esp
;
context
->
Esp
+=
sizeof
(
DWORD
);
...
...
@@ -131,7 +131,7 @@ static inline DWORD stack32_pop( CONTEXT86 *context )
/***********************************************************************
* VxDCall (VMM.VXD.@)
*/
DWORD
WINAPI
VMM_VxDCall
(
DWORD
service
,
CONTEXT
86
*
context
)
DWORD
WINAPI
VMM_VxDCall
(
DWORD
service
,
CONTEXT
*
context
)
{
static
int
warned
;
...
...
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