Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
30131979
Commit
30131979
authored
Feb 09, 2007
by
Francois Gouget
Committed by
Alexandre Julliard
Feb 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winapi_check: '-register' is compatible with stdcall. So remove this obsolete warning.
parent
65563fd0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
winapi_local.pm
tools/winapi/winapi_local.pm
+2
-8
No files found.
tools/winapi/winapi_local.pm
View file @
30131979
...
...
@@ -123,14 +123,8 @@ sub _check_function($$$$$$) {
$declared_calling_convention
=
$1
;
}
if
(
$declared_register
)
{
if
(
$implemented_calling_convention
eq
"stdcall"
)
{
$output
->
write
(
"-register functions should not be implemented as stdcall\n"
);
}
}
elsif
(
$implemented_calling_convention
ne
$declared_calling_convention
&&
if
(
!
$declared_register
&&
$implemented_calling_convention
ne
$declared_calling_convention
&&
$implemented_calling_convention
ne
"asm"
&&
!
(
$declared_calling_convention
=~
/^pascal/
&&
$forbidden_return_type
)
&&
!
(
$implemented_calling_convention
=~
/^(?:cdecl|varargs)$/
&&
$declared_calling_convention
=~
/^(?:cdecl|varargs)$/
))
...
...
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