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
9401ec5a
Commit
9401ec5a
authored
May 13, 2003
by
Eric Pouech
Committed by
Alexandre Julliard
May 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support 14 and 15 arguments in WOW_CallProc32W16.
parent
c00aa998
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
wowthunk.c
dlls/kernel/wowthunk.c
+5
-1
No files found.
dlls/kernel/wowthunk.c
View file @
9401ec5a
...
...
@@ -415,7 +415,7 @@ static DWORD WOW_CallProc32W16( BOOL Ex )
DWORD
*
args
,
ret
;
DWORD
mutex_count
;
VA_LIST16
valist
;
int
i
;
unsigned
int
i
;
int
aix
;
ReleaseThunkLock
(
&
mutex_count
);
...
...
@@ -486,6 +486,10 @@ static DWORD WOW_CallProc32W16( BOOL Ex )
break
;
case
13
:
ret
=
proc32
(
args
[
0
],
args
[
1
],
args
[
2
],
args
[
3
],
args
[
4
],
args
[
5
],
args
[
6
],
args
[
7
],
args
[
8
],
args
[
9
],
args
[
10
],
args
[
11
],
args
[
12
]);
break
;
case
14
:
ret
=
proc32
(
args
[
0
],
args
[
1
],
args
[
2
],
args
[
3
],
args
[
4
],
args
[
5
],
args
[
6
],
args
[
7
],
args
[
8
],
args
[
9
],
args
[
10
],
args
[
11
],
args
[
12
],
args
[
13
]);
break
;
case
15
:
ret
=
proc32
(
args
[
0
],
args
[
1
],
args
[
2
],
args
[
3
],
args
[
4
],
args
[
5
],
args
[
6
],
args
[
7
],
args
[
8
],
args
[
9
],
args
[
10
],
args
[
11
],
args
[
12
],
args
[
13
],
args
[
14
]);
break
;
default:
/* FIXME: should go up to 32 arguments */
ERR
(
"Unsupported number of arguments %ld, please report.
\n
"
,
nrofargs
);
...
...
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