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
cb310a3c
Commit
cb310a3c
authored
Jul 27, 1999
by
Ulrich Weigand
Committed by
Alexandre Julliard
Jul 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More gcc bug workarounds.
parent
0f184bf0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
thunk.c
if1632/thunk.c
+3
-3
No files found.
if1632/thunk.c
View file @
cb310a3c
...
...
@@ -1557,10 +1557,10 @@ void WINAPI CBClientGlueSL( CONTEXT86 *context )
/***********************************************************************
* CBClientThunkSL (KERNEL.620)
*/
extern
DWORD
WINAPI
CALL32_CBClient
(
FARPROC
proc
,
LPWORD
args
,
DWORD
*
esi
);
void
WINAPI
CBClientThunkSL
(
CONTEXT86
*
context
)
{
/* Call 32-bit relay code */
extern
DWORD
WINAPI
CALL32_CBClient
(
FARPROC
proc
,
LPWORD
args
,
DWORD
*
esi
);
LPWORD
args
=
PTR_SEG_OFF_TO_LIN
(
SS_reg
(
context
),
BP_reg
(
context
)
);
FARPROC
proc
=
CBClientRelay32
[
args
[
2
]
][
args
[
1
]
];
...
...
@@ -1571,11 +1571,11 @@ void WINAPI CBClientThunkSL( CONTEXT86 *context )
/***********************************************************************
* CBClientThunkSLEx (KERNEL.621)
*/
extern
DWORD
WINAPI
CALL32_CBClientEx
(
FARPROC
proc
,
LPWORD
args
,
DWORD
*
esi
,
INT
*
nArgs
);
void
WINAPI
CBClientThunkSLEx
(
CONTEXT86
*
context
)
{
/* Call 32-bit relay code */
extern
DWORD
WINAPI
CALL32_CBClientEx
(
FARPROC
proc
,
LPWORD
args
,
DWORD
*
esi
,
INT
*
nArgs
);
LPWORD
args
=
PTR_SEG_OFF_TO_LIN
(
SS_reg
(
context
),
BP_reg
(
context
)
);
FARPROC
proc
=
CBClientRelay32
[
args
[
2
]
][
args
[
1
]
];
...
...
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