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
906c9639
Commit
906c9639
authored
Dec 29, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 29, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winapi: Remove the special handling of GDI_AllocObject().
That function doesn't exist anymore in Wine.
parent
e5574369
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
7 deletions
+1
-7
make_parser.pm
tools/winapi/make_parser.pm
+1
-7
No files found.
tools/winapi/make_parser.pm
View file @
906c9639
...
...
@@ -347,13 +347,7 @@ sub gcc_output($$) {
}
elsif
(
/^ordered comparison of pointer with integer zero$/
)
{
$suppress
=
0
;
}
elsif
(
/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') from incompatible pointer type$/
)
{
my
$arg
=
$1
;
my
$name
=
$2
;
if
(
defined
(
$name
)
&&
$name
=~
/^GDI_AllocObject$/
)
{
$suppress
=
1
;
}
else
{
$suppress
=
0
;
}
$suppress
=
0
;
}
elsif
(
/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes integer from pointer without a cast$/
)
{
$suppress
=
0
;
}
elsif
(
/^passing arg (\d+) of (?:pointer to function|\`(\S+)\') makes pointer from integer without a cast$/
)
{
...
...
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