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
db3aba29
Commit
db3aba29
authored
Jul 18, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Jul 18, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Work-around for compiler bug.
parent
e74f219d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
kernel32.c
win32/kernel32.c
+4
-4
No files found.
win32/kernel32.c
View file @
db3aba29
...
...
@@ -299,7 +299,7 @@ void WINAPI REGS_FUNC(QT_Thunk)( CONTEXT *context )
memcpy
(
&
context16
,
context
,
sizeof
(
context16
));
CS_reg
(
&
context16
)
=
HIWORD
(
EDX_reg
(
context
));
IP_reg
(
&
context16
)
=
LOWORD
(
EDX_reg
(
context
));
EIP_reg
(
&
context16
)
=
LOWORD
(
EDX_reg
(
context
));
EBP_reg
(
&
context16
)
=
OFFSETOF
(
NtCurrentTeb
()
->
cur_stack
)
+
(
WORD
)
&
((
STACK16FRAME
*
)
0
)
->
bp
;
...
...
@@ -416,7 +416,7 @@ void WINAPI REGS_FUNC(FT_Thunk)( CONTEXT *context )
memcpy
(
&
context16
,
context
,
sizeof
(
context16
));
CS_reg
(
&
context16
)
=
HIWORD
(
callTarget
);
IP_reg
(
&
context16
)
=
LOWORD
(
callTarget
);
EIP_reg
(
&
context16
)
=
LOWORD
(
callTarget
);
EBP_reg
(
&
context16
)
=
OFFSETOF
(
NtCurrentTeb
()
->
cur_stack
)
+
(
WORD
)
&
((
STACK16FRAME
*
)
0
)
->
bp
;
...
...
@@ -609,7 +609,7 @@ void WINAPI REGS_FUNC(Common32ThkLS)( CONTEXT *context )
DI_reg
(
&
context16
)
=
CX_reg
(
context
);
CS_reg
(
&
context16
)
=
HIWORD
(
EAX_reg
(
context
));
IP_reg
(
&
context16
)
=
LOWORD
(
EAX_reg
(
context
));
EIP_reg
(
&
context16
)
=
LOWORD
(
EAX_reg
(
context
));
EBP_reg
(
&
context16
)
=
OFFSETOF
(
NtCurrentTeb
()
->
cur_stack
)
+
(
WORD
)
&
((
STACK16FRAME
*
)
0
)
->
bp
;
...
...
@@ -665,7 +665,7 @@ void WINAPI REGS_FUNC(OT_32ThkLSF)( CONTEXT *context )
memcpy
(
&
context16
,
context
,
sizeof
(
context16
));
CS_reg
(
&
context16
)
=
HIWORD
(
EDX_reg
(
context
));
IP_reg
(
&
context16
)
=
LOWORD
(
EDX_reg
(
context
));
EIP_reg
(
&
context16
)
=
LOWORD
(
EDX_reg
(
context
));
EBP_reg
(
&
context16
)
=
OFFSETOF
(
NtCurrentTeb
()
->
cur_stack
)
+
(
WORD
)
&
((
STACK16FRAME
*
)
0
)
->
bp
;
...
...
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