winapi: Allow DECLSPEC_ALIGN() in typedef declarations.
Signed-off-by: Francois Gouget <fgouget@free.fr> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
eb85be50f4
commit
13c69ae840
|
@ -556,7 +556,7 @@ sub parse_c_file($$) {
|
|||
} elsif(/(DEFAULT|DECLARE)_DEBUG_CHANNEL\s*\((\S+)\)/s) {
|
||||
$_ = $'; $again = 1;
|
||||
push @$debug_channels, $1;
|
||||
} elsif(/typedef\s+(enum|interface|struct|union)(?:\s+(\w+))?\s*\{/s) {
|
||||
} elsif(/typedef\s+(enum|interface|struct|union)(?:\s+DECLSPEC_ALIGN\(\d+\))?(?:\s+(\w+))?\s*\{/s) {
|
||||
$_ = $'; $again = 1;
|
||||
$level++;
|
||||
my $type = $1;
|
||||
|
|
Loading…
Reference in New Issue