From f9f68327cc801d8f06327d4fa7c5ffc08729544b Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Fri, 27 Aug 2004 19:11:51 +0000 Subject: [PATCH] Hack winapi_parser so we recognise ElfW(auxv_t) as a type. Fixes the scripts that compute API statistics. --- tools/winapi_check/winapi_parser.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winapi_check/winapi_parser.pm b/tools/winapi_check/winapi_parser.pm index 7a40b3ea9e0..412328dab5f 100644 --- a/tools/winapi_check/winapi_parser.pm +++ b/tools/winapi_check/winapi_parser.pm @@ -418,7 +418,7 @@ sub parse_c_file { $argument_name = "..."; } elsif($argument =~ /^ ((?:struct\s+|union\s+|enum\s+|register\s+|(?:signed\s+|unsigned\s+) - (?:short\s+(?=int)|long\s+(?=int))?)?\w+)\s* + (?:short\s+(?=int)|long\s+(?=int))?)?\w+|ElfW\(\w+\))\s* ((?:__RPC_FAR|const|CONST)?\s*(?:\*\s*(?:__RPC_FAR|const|CONST)?\s*?)*)\s* (?:WINE_UNUSED\s+)?(\w*)\s*(?:\[\]|\s+OPTIONAL|\s+WINE_UNUSED)?$/x) {