- Updated API files
- Better headers and prototype checking
- Prototype checking now called --prototype instead of --headers
- New options --headers-{duplicated,misplaced} for
duplicated/misplaced functions checking of the headers.
- Minor bug fixes.
diff --git a/tools/winapi_check/modules.pm b/tools/winapi_check/modules.pm
index 2018533..e1d2cb4 100644
--- a/tools/winapi_check/modules.pm
+++ b/tools/winapi_check/modules.pm
@@ -52,6 +52,11 @@
if(/^%\s+(.*?)$/) {
$spec_file = $1;
+
+ if(!-f "$wine_dir/$spec_file") {
+ $$output->write("$module_file: $spec_file: file ($spec_file) doesn't exist or is no file\n");
+ }
+
if($wine_dir eq ".") {
$all_spec_files{$spec_file}--;
} else {