Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Zsolt Vadász
wine
Commits
9401ec5a
Commit
9401ec5a
authored
21 years ago
by
Eric Pouech
Committed by
Alexandre Julliard
21 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Support 14 and 15 arguments in WOW_CallProc32W16.
parent
c00aa998
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/kernel/wowthunk.c
+5
-1
5 additions, 1 deletion
dlls/kernel/wowthunk.c
with
5 additions
and
1 deletion
dlls/kernel/wowthunk.c
+
5
−
1
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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment