Commit 52dbbafa authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Remove WINE_UNUSED checks.

parent bd10348e
...@@ -37,8 +37,7 @@ use c_type; ...@@ -37,8 +37,7 @@ use c_type;
my $CALL_CONVENTION="__cdecl|__stdcall|" . my $CALL_CONVENTION="__cdecl|__stdcall|" .
"__RPC_API|__RPC_STUB|__RPC_USER|" . "__RPC_API|__RPC_STUB|__RPC_USER|" .
"CALLBACK|CDECL|NTAPI|PASCAL|RPC_ENTRY|RPC_VAR_ENTRY|" . "CALLBACK|CDECL|NTAPI|PASCAL|RPC_ENTRY|RPC_VAR_ENTRY|" .
"VFWAPI|VFWAPIV|WINAPI|WINAPIV|" . "VFWAPI|VFWAPIV|WINAPI|WINAPIV|";
"WINE_UNUSED";
sub parse_c_function($$$$$); sub parse_c_function($$$$$);
...@@ -2075,8 +2074,6 @@ sub parse_c_variable($$$$$$$) { ...@@ -2075,8 +2074,6 @@ sub parse_c_variable($$$$$$$) {
# Nothing # Nothing
} elsif(s/^WINAPI\s*//) { } elsif(s/^WINAPI\s*//) {
$self->_update_c_position($&, \$line, \$column); $self->_update_c_position($&, \$line, \$column);
} elsif(s/^WINE_UNUSED\s*//) {
$self->_update_c_position($&, \$line, \$column);
} }
if($finished) { if($finished) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment