winapi_check: .exe and .ocx files can also export APIs.

This commit is contained in:
Francois Gouget 2007-06-12 17:50:20 +02:00 committed by Alexandre Julliard
parent 3aebd595a8
commit 8f3187bdf1

View file

@ -125,7 +125,7 @@ sub check_documentation($) {
if(!$documentation_error && $options->documentation_wrong) {
foreach (split(/\n/, $documentation)) {
if (/^\s*\*\s*(\S+)\s*[\(\[]\s*(\w+(?:\.(?:DRV|VXD))?)\s*\.\s*([^\s\)\]]*)\s*[\)\]].*?$/) {
if (/^\s*\*\s*(\S+)\s*[\(\[]\s*(\w+(?:\.(?:DRV|EXE|OCX|VXD))?)\s*\.\s*([^\s\)\]]*)\s*[\)\]].*?$/) {
my $external_name = $1;
my $module = $2;
my $ordinal = $3;