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
9714802b
Commit
9714802b
authored
Sep 26, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Sep 26, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update winapi_check so it considers 'longlong' (win*.api files) as
compatible with 'double' (spec files).
parent
e180cd95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
winapi_function.pm
tools/winapi/winapi_function.pm
+1
-1
winapi_local.pm
tools/winapi/winapi_local.pm
+4
-4
No files found.
tools/winapi/winapi_function.pm
View file @
9714802b
...
...
@@ -387,7 +387,7 @@ sub _argument_kinds($$) {
my
$argument_kind
=
$winapi
->
translate_argument
(
$argument_type
);
if
(
defined
(
$argument_kind
)
&&
$argument_kind
eq
"longlong"
)
{
push
@argument_kinds
,
(
"long"
,
"long"
)
;
push
@argument_kinds
,
"double"
;
}
else
{
push
@argument_kinds
,
$argument_kind
;
}
...
...
tools/winapi/winapi_local.pm
View file @
9714802b
...
...
@@ -195,11 +195,11 @@ sub _check_function($$$$$$) {
# FIXME: Kludge
if
(
defined
(
$kind
)
&&
$kind
eq
"struct16"
)
{
$n
+=
4
;
(
"long"
,
"long"
,
"long"
,
"long"
);
}
elsif
(
defined
(
$kind
)
&&
$kind
eq
"longlong"
)
{
$n
+=
2
;
(
"long"
,
"long"
);
(
"double"
,
"double"
);
}
elsif
(
defined
(
$kind
)
&&
$kind
eq
"longlong"
)
{
$n
+=
1
;
"double"
;
}
else
{
$n
++
;
$kind
;
...
...
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