- Minor API files update.
- Minor bug fixes.
- Minor documentation check improvements.
diff --git a/tools/winapi_check/winapi_parser.pm b/tools/winapi_check/winapi_parser.pm
index a1a04f9..c45b21d 100644
--- a/tools/winapi_check/winapi_parser.pm
+++ b/tools/winapi_check/winapi_parser.pm
@@ -135,7 +135,9 @@
if(defined($comments[$n]) && $n >= 0) {
$documentation = $comments[$n];
for(my $m=$n+1; $m <= $#comments; $m++) {
- if($comments[$m] =~ /^\/\*\*+\/$/) {
+ if($comments[$m] =~ /^\/\*\*+\/$/ ||
+ $comments[$m] =~ /^\/\*\s*(?:\!)?defined/) # FIXME: Kludge
+ {
@argument_documentations = ();
next;
}