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
88619a80
Commit
88619a80
authored
Feb 20, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 20, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winapi_check: Fix handling of the 'longlong' arguments.
parent
f032dcbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
winapi_local.pm
tools/winapi/winapi_local.pm
+3
-2
No files found.
tools/winapi/winapi_local.pm
View file @
88619a80
...
...
@@ -187,7 +187,7 @@ sub _check_function($$$$$$) {
(
"double"
,
"double"
);
}
elsif
(
defined
(
$kind
)
&&
$kind
eq
"longlong"
)
{
$n
+=
1
;
"
double
"
;
"
longlong
"
;
}
else
{
$n
++
;
$kind
;
...
...
@@ -230,7 +230,8 @@ sub _check_function($$$$$$) {
$output
->
write
(
"argument "
.
(
$n
+
1
)
.
" type is forbidden: "
.
"$argument_types[$n] ($argument_kinds[$n])\n"
);
}
}
elsif
(
$argument_kinds
[
$n
]
ne
$declared_argument_kinds
[
$n
])
{
}
elsif
(
$argument_kinds
[
$n
]
ne
$declared_argument_kinds
[
$n
]
&&
!
(
$argument_kinds
[
$n
]
eq
"longlong"
&&
$declared_argument_kinds
[
$n
]
eq
"double"
))
{
if
(
$options
->
report_argument_kind
(
$argument_kinds
[
$n
])
||
$options
->
report_argument_kind
(
$declared_argument_kinds
[
$n
]))
{
...
...
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