3 # Copyright 2002 Patrik Stridvall
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 $0 =~ m
%^(.*?
/?tools)/winapi
/winapi_test
$%;
24 require "$1/winapi/setup.pm";
28 file_type files_skip files_filter
29 $current_dir $wine_dir $winapi_dir
31 use output qw($output);
32 use winapi_test_options qw($options);
34 if($options->progress) {
35 $output->enable_progress;
37 $output->disable_progress;
43 use util qw(replace_file);
55 foreach my $test (@tests) {
56 my @test_dirs = $tests->get_test_dirs($test);
57 foreach my $test_dir (@test_dirs) {
58 my @headers = $tests->get_section($test_dir, $test, "header");
59 foreach my $header (@headers) {
60 $files{"include/$header"} = 1;
65 foreach my $test (@tests) {
66 my @test_dirs = $tests->get_test_dirs($test);
67 foreach my $test_dir (@test_dirs) {
68 my @headers = $tests->get_section($test_dir, $test, "header");
69 foreach my $header (@headers) {
70 if($files{"include/$header"}) {
71 push @files, "include/$header";
72 $files{"include/$header"} = 0;
80 my $file = "tests.dat";
82 $file .= "2"; # FIXME: For tests
84 open(OUT
, "> $winapi_dir/$file") || die "Error: Can't open $winapi_dir/$file: $!\n";
87 my @test_dirs = $tests->get_test_dirs();
88 foreach my $test_dir (@test_dirs) {
89 print OUT
"\n" if $x++;
90 print OUT
"%%%$test_dir\n";
94 my @tests = $tests->get_tests($test_dir);
95 foreach my $test (@tests) {
96 print OUT
"\n" if $y++;
97 print OUT
"%%$test\n";
103 my @sections = $tests->get_sections($test_dir, $test);
104 foreach my $section (@sections) {
105 my @lines = $tests->get_section($test_dir, $test, $section);
107 if ($section =~ /^(?:struct|type)$/) {
108 foreach my $line (@lines) {
114 print OUT
"\n" if $z++;
115 print OUT
"%$section\n";
117 foreach my $line (@lines) {
122 @types = sort { $x = $a; $y = $b; $x =~ s/^!//; $y =~ s/^!//; $x cmp $y } @types;
124 print OUT
"\n" if $z++;
127 foreach my $type (@types) {
141 my $progress_current = 0;
142 my $progress_max = scalar(@files);
144 ########################################################################
150 "ANYSIZE_ARRAY" => 1,
151 "CCHDEVICENAME" => 32,
152 "CCHILDREN_TITLEBAR+1" => 6,
153 "ELF_VENDOR_SIZE" => 4,
154 "EXCEPTION_MAXIMUM_PARAMETERS" => 15,
155 "HW_PROFILE_GUIDLEN" => 39,
156 "IMAGE_NUMBEROF_DIRECTORY_ENTRIES" => 16,
157 "IMAGE_SIZEOF_SHORT_NAME" => 8,
159 "LF_FULLFACESIZE" => 64,
160 "MAXIMUM_SUPPORTED_EXTENSION" => 512,
161 "MAX_GOPHER_DISPLAY_TEXT + 1" => 129,
162 "MAX_GOPHER_LOCATOR_LENGTH + 1" => 654,
164 "MAX_PROFILE_LEN" => 80,
166 "OFS_MAXPATHNAME" => 128,
167 "SIZE_OF_80387_REGISTERS" => 80,
168 "TOKEN_SOURCE_LENGTH" => 8,
171 my %align_kludge_reported = ("FILETIME" => 1, "LARGE_INTEGER" => 1);
172 my %size_kludge_reported = ("FILETIME" => 1, "LARGE_INTEGER" => 1);
173 my %size_parse_reported;
175 sub _find_align_kind_size
($) {
176 my $type_name = shift;
178 local $_ = $type_name;
189 } elsif(/^(?:(signed|unsigned)\s+)?(?:__int8|char|byte)$/) {
191 $kind = defined($1) ?
$1 : "signed";
193 } elsif (/^(?:(signed|unsigned)\s+)?(?:__int16|short(?:\s+int)?)$/) {
195 $kind = defined($1) ?
$1 : "signed";
197 } elsif (/^(?:wchar_t)$/) {
201 } elsif (/^(signed|unsigned)$/) {
203 $kind = defined($1) ?
$1 : "signed";
205 } elsif (/^(?:(signed|unsigned)\s+)?(?:__int32|int|long(?:\s+int)?)$/) {
207 $kind = defined($1) ?
$1 : "signed";
209 } elsif (/^(?:float)$/) {
213 } elsif (/^(?:(signed|unsigned)\s+)?__int64$/) {
215 $kind = defined($1) ?
$1 : "signed";
217 } elsif (/^(?:double|DOUBLE|DATE)$/) {
221 } elsif (/^(?:long\s+double)$/) {
225 } elsif (/^H(?:DC|BITMAP|BRUSH|ICON|INSTANCE|KEY|MENU|METAFILE|RESULT|WND)$/) {
229 } elsif (/^LP(?:BYTE|CSTR|CWSTR|DWORD|STR|VOID|WSTR)$/) {
233 } elsif (/^(?:FILETIME)$/) {
237 } elsif (/^(?:VOID)$/) {
241 } elsif (/^(?:SHORT)$/) {
245 } elsif (/^(?:BYTE)$/) {
249 } elsif (/^(?:DWORD)$/) {
253 } elsif (/^(?:WORD)$/) {
257 } elsif (/^(?:INT64|LONG64|LONGLONG)$/) {
261 } elsif (/^(?:UINT64|ULONG64|DWORD64|ULONGLONG|DWORDLONG)$/) {
265 } elsif (/^(?:LARGE_INTEGER)$/) {
269 } elsif (/^(?:POINTS)$/) {
273 } elsif (/^(struct|union)$/) {
275 if (!$size_parse_reported{$_}) {
276 $output->write("$type_name: can't parse type\n");
277 $size_parse_reported{$_} = 1;
279 } elsif (/^\w+\s*\((?:\s*CALLBACK|\s*NTAPI|\s*WINAPI)?\s*\*\s*\)\s*\(.*?\)$/) {
286 if (defined(my $type = $type_name2type{$_})) {
287 $align2 = $type->align;
290 if (!defined($align)) {
292 } elsif (defined($align2) && !$align_kludge_reported{$_}) {
293 $align_kludge_reported{$_} = 1;
294 $output->write("$type_name: type needn't be kludged\n");
297 if (!defined($align)) {
298 # $output->write("$type_name: can't find type\n");
302 if (defined(my $type = $type_name2type{$_})) {
303 $size2 = $type->size;
306 if (!defined($size)) {
308 } elsif (defined($size2) && !$size_kludge_reported{$_}) {
309 $size_kludge_reported{$_} = 1;
310 $output->write("$type_name: type needn't be kludged\n");
313 return ($align, $kind, $size);
317 my $type_name = shift;
318 (my $align, my $kind, my $size) = _find_align_kind_size
($type_name);
323 my $type_name = shift;
324 (my $align, my $kind, my $size) = _find_align_kind_size
($type_name);
330 my $type_name = shift;
331 (my $align, my $kind, my $size) = _find_align_kind_size
($type_name);
337 return $defines{$count};
340 foreach my $file (@files) {
344 open(IN
, "< $wine_dir/$file") || die "Error: Can't open $wine_dir/$file: $!\n";
353 while(s/^.*?\n//) { $max_line++; }
354 if($_) { $max_line++; }
357 my $parser = new c_parser
($file);
363 my $update_output = sub {
367 $progress .= "$file (file $progress_current of $progress_max)";
368 $prefix .= "$file: ";
371 $progress .= ": line $line of $max_line";
374 $output->progress($progress);
375 $output->prefix($prefix);
380 my $found_line = sub {
385 $parser->set_found_line_callback($found_line);
387 my $found_preprocessor = sub {
388 my $begin_line = shift;
389 my $begin_column = shift;
390 my $preprocessor = shift;
392 #print "found_preprocessor: $begin_line: [$_]\n";
393 if ($preprocessor =~ /^\#\s*include\s+[\"<]pshpack(\d+)\.h[\">]$/) {
395 #print "found pack $1 on line $begin_line\n";
396 } elsif($preprocessor =~ /^\#\s*include\s+[\"<]poppack\.h[\">]$/) {
398 #print "found poppack on line $begin_line\n";
403 $parser->set_found_preprocessor_callback($found_preprocessor);
405 my $found_type = sub {
410 my $name = $type->name;
411 $file2types{$file}{$name} = $type;
413 $type->set_find_align_callback(\
&find_align
);
414 $type->set_find_kind_callback(\
&find_kind
);
415 $type->set_find_size_callback(\
&find_size
);
416 $type->set_find_count_callback(\
&find_count
);
418 my $pack = $packs[$#packs];
419 if (!defined($type->pack) && $type->kind =~ /^(?:struct|union)$/) {
422 my $size = $type->size();
423 if (defined($size)) {
424 my $max_field_base_size = 0;
426 foreach my $field ($type->fields()) {
427 my $field_type_name = $field->type_name;
428 my $field_name = $field->name;
429 my $field_size = $field->size;
430 my $field_base_size = $field->base_size;
431 my $field_offset = $field->offset;
432 my $field_align = $field->align;
434 # $output->write("$name: $field_type_name: $field_name: $field_offset: $field_size($field_base_size): $field_align\n");
436 # $output->write("$name: $size\n");
438 $type_name2type{$name} = $type;
440 # $output->write("$name: can't find size\n");
445 $parser->set_found_type_callback($found_type);
450 if(!$parser->parse_c_file(\
$_, \
$line, \
$column)) {
451 $output->write("can't parse file\n");
458 ########################################################################
461 sub output_header
($$$) {
464 my $test_dir = shift;
465 my @tests = @
{(shift)};
467 print OUT
"/* File generated automatically from tools/winapi/test.dat; do not edit! */\n";
468 print OUT
"/* This file can be copied, modified and distributed without restriction. */\n";
472 foreach my $test (@tests) {
473 my @description = $tests->get_section($test_dir, $test, "description");
474 foreach my $description (@description) {
475 print OUT
" * $description\n";
481 print OUT
"#define WINVER 0x0501\n";
482 print OUT
"#define _WIN32_IE 0x0501\n";
483 print OUT
"#define _WIN32_WINNT 0x0501\n";
485 print OUT
"#define WINE_NOWINSOCK\n";
487 foreach my $test (@tests) {
488 my @includes = $tests->get_section($test_dir, $test, "include");
489 foreach my $include (@includes) {
490 print OUT
"#include $include\n";
494 print OUT
"#include \"wine/test.h\"\n";
497 print OUT
"/***********************************************************************\n";
498 print OUT
" * Compatibility macros\n";
501 print OUT
"#define DWORD_PTR UINT_PTR\n";
502 print OUT
"#define LONG_PTR INT_PTR\n";
503 print OUT
"#define ULONG_PTR UINT_PTR\n";
506 print OUT
"/***********************************************************************\n";
507 print OUT
" * Windows API extension\n";
510 print OUT
"#if defined(_MSC_VER) && (_MSC_VER >= 1300) && defined(__cplusplus)\n";
511 print OUT
"# define FIELD_ALIGNMENT(type, field) __alignof(((type*)0)->field)\n";
512 print OUT
"#elif defined(__GNUC__)\n";
513 print OUT
"# define FIELD_ALIGNMENT(type, field) __alignof__(((type*)0)->field)\n";
515 print OUT
"/* FIXME: Not sure if is possible to do without compiler extension */\n";
516 print OUT
"#endif\n";
518 print OUT
"#if defined(_MSC_VER) && (_MSC_VER >= 1300) && defined(__cplusplus)\n";
519 print OUT
"# define _TYPE_ALIGNMENT(type) __alignof(type)\n";
520 print OUT
"#elif defined(__GNUC__)\n";
521 print OUT
"# define _TYPE_ALIGNMENT(type) __alignof__(type)\n";
524 print OUT
" * FIXME: Not sure if is possible to do without compiler extension\n";
525 print OUT
" * (if type is not just a name that is, if so the normal)\n";
526 print OUT
" * TYPE_ALIGNMENT can be used)\n";
528 print OUT
"#endif\n";
530 print OUT
"#if defined(TYPE_ALIGNMENT) && defined(_MSC_VER) && _MSC_VER >= 800 && !defined(__cplusplus)\n";
531 print OUT
"#pragma warning(disable:4116)\n";
532 print OUT
"#endif\n";
534 print OUT
"#if !defined(TYPE_ALIGNMENT) && defined(_TYPE_ALIGNMENT)\n";
535 print OUT
"# define TYPE_ALIGNMENT _TYPE_ALIGNMENT\n";
536 print OUT
"#endif\n";
539 print OUT
"/***********************************************************************\n";
540 print OUT
" * Test helper macros\n";
543 print OUT
"#ifdef FIELD_ALIGNMENT\n";
544 print OUT
"# define TEST_FIELD_ALIGNMENT(type, field, align) \\\n";
545 print OUT
" ok(FIELD_ALIGNMENT(type, field) == align, \\\n";
546 print OUT
" \"FIELD_ALIGNMENT(\" #type \", \" #field \") == %d (expected \" #align \")\\n\", \\\n";
547 print OUT
" (int)FIELD_ALIGNMENT(type, field))\n";
549 print OUT
"# define TEST_FIELD_ALIGNMENT(type, field, align) do { } while (0)\n";
550 print OUT
"#endif\n";
552 print OUT
"#define TEST_FIELD_OFFSET(type, field, offset) \\\n";
553 print OUT
" ok(FIELD_OFFSET(type, field) == offset, \\\n";
554 print OUT
" \"FIELD_OFFSET(\" #type \", \" #field \") == %ld (expected \" #offset \")\\n\", \\\n";
555 print OUT
" (long int)FIELD_OFFSET(type, field))\n";
557 print OUT
"#ifdef _TYPE_ALIGNMENT\n";
558 print OUT
"#define TEST__TYPE_ALIGNMENT(type, align) \\\n";
559 print OUT
" ok(_TYPE_ALIGNMENT(type) == align, \"TYPE_ALIGNMENT(\" #type \") == %d (expected \" #align \")\\n\", (int)_TYPE_ALIGNMENT(type))\n";
561 print OUT
"# define TEST__TYPE_ALIGNMENT(type, align) do { } while (0)\n";
562 print OUT
"#endif\n";
564 print OUT
"#ifdef TYPE_ALIGNMENT\n";
565 print OUT
"#define TEST_TYPE_ALIGNMENT(type, align) \\\n";
566 print OUT
" ok(TYPE_ALIGNMENT(type) == align, \"TYPE_ALIGNMENT(\" #type \") == %d (expected \" #align \")\\n\", (int)TYPE_ALIGNMENT(type))\n";
568 print OUT
"# define TEST_TYPE_ALIGNMENT(type, align) do { } while (0)\n";
569 print OUT
"#endif\n";
571 print OUT
"#define TEST_TYPE_SIZE(type, size) \\\n";
572 print OUT
" ok(sizeof(type) == size, \"sizeof(\" #type \") == %d (expected \" #size \")\\n\", ((int) sizeof(type)))\n";
574 print OUT
"/***********************************************************************\n";
575 print OUT
" * Test macros\n";
578 print OUT
"#define TEST_FIELD(type, field_type, field_name, field_offset, field_size, field_align) \\\n";
579 print OUT
" TEST_TYPE_SIZE(field_type, field_size); \\\n";
580 print OUT
" TEST_FIELD_ALIGNMENT(type, field_name, field_align); \\\n";
581 print OUT
" TEST_FIELD_OFFSET(type, field_name, field_offset); \\\n";
583 print OUT
"#define TEST_TYPE(type, size, align) \\\n";
584 print OUT
" TEST_TYPE_ALIGNMENT(type, align); \\\n";
585 print OUT
" TEST_TYPE_SIZE(type, size)\n";
587 print OUT
"#define TEST_TYPE_POINTER(type, size, align) \\\n";
588 print OUT
" TEST__TYPE_ALIGNMENT(*(type)0, align); \\\n";
589 print OUT
" TEST_TYPE_SIZE(*(type)0, size)\n";
591 print OUT
"#define TEST_TYPE_SIGNED(type) \\\n";
592 print OUT
" ok((type) -1 < 0, \"(\" #type \") -1 < 0\\n\");\n";
594 print OUT
"#define TEST_TYPE_UNSIGNED(type) \\\n";
595 print OUT
" ok((type) -1 > 0, \"(\" #type \") -1 > 0\\n\");\n";
599 ########################################################################
602 sub output_footer
($$$) {
605 my $test_dir = shift;
606 my @tests = @
{(shift)};
608 print OUT
"START_TEST(generated)\n";
610 foreach my $test (@tests) {
611 print OUT
" test_$test();\n";
616 ########################################################################
617 # output_test_pack_type
619 sub output_test_pack_type
($$$$$$) {
622 my $type_name2type = shift;
623 my $type_name2optional = shift;
624 my $type_name2optional_fields = shift;
625 my $type_name = shift;
628 my $optional_fields = $$type_name2optional_fields{$type_name};
630 my $type_align = $type->align;
631 my $type_pack = $type->pack;
632 my $type_size = $type->size;
633 my $type_kind = $type->kind;
635 if (defined($type_pack)) {
636 print OUT
" /* $type_name (pack $type_pack) */\n";
638 print OUT
" /* $type_name */\n";
641 if (!scalar(keys(%$optional_fields)) && defined($type_align) && defined($type_size)) {
642 print OUT
" TEST_TYPE($type_name, $type_size, $type_align);\n";
645 if ($type_kind eq "float") {
647 } elsif ($type_kind eq "pointer") {
648 my $dereference_type;
649 $dereference_type = sub {
652 my @fields = $type->fields;
653 my $type_name2 =$fields[0]->type_name;
655 if ($type_name2 =~ s/\s*\*$//) {
656 my $type2 = $$type_name2type{$type_name2};
657 if (defined($type2)) {
660 if ($type_name2 !~ /^(?:PVOID|VOID|void)$/) {
661 $output->write("$type_name2: warning: type not found 1\n");
665 } elsif ($type_name2 =~ /^\w+$/) {
666 my $type2 = $$type_name2type{$type_name2};
667 if (defined($type2)) {
668 return &$dereference_type($type2);
670 $output->write("$type_name2: warning: type not found\n");
673 } elsif ($type_name2 =~ /^\w+\s*\((?:\s*CALLBACK|\s*NTAPI|\s*WINAPI)?\s*\*\s*\)\s*\(.*?\)$/) {
676 $output->write("$type_name2: warning: type can't be parsed\n");
681 my $type2 = &$dereference_type($type);
682 if (defined($type2)) {
683 my $type_name2 = $type2->name;
684 my $type_align2 = $type2->align;
685 my $type_size2 = $type2->size;
687 my $optional = $$type_name2optional{$type_name};
688 my $optional_fields2 = $$type_name2optional_fields{$type_name2};
690 if (!$optional && !scalar(keys(%$optional_fields2)) && defined($type_align2) && defined($type_size2)) {
691 print OUT
" TEST_TYPE_POINTER($type_name, $type_size2, $type_align2);\n";
693 # $output->write("$type_name: warning: type size not found\n");
696 } elsif ($type_kind eq "signed") {
697 print OUT
" TEST_TYPE_SIGNED($type_name);\n";
698 } elsif ($type_kind eq "unsigned") {
699 print OUT
" TEST_TYPE_UNSIGNED($type_name);\n";
703 sub output_test_pack_fields
($$$$$$$);
704 sub output_test_pack_fields
($$$$$$$) {
707 my $type_name2type = shift;
708 my $type_name2optional = shift;
709 my $type_name2optional_fields = shift;
710 my $type_name = shift;
714 my $optional_fields = $$type_name2optional_fields{$type_name};
716 foreach my $field ($type->fields()) {
717 my $field_type_name = $field->type_name;
718 $field_type_name =~ s/\s+DECLSPEC_ALIGN\(\d+\)//;
719 my $field_name = $field->name;
720 my $field_size = $field->size;
721 my $field_offset = $field->offset;
722 my $field_align = $field->align;
724 next if $field_name eq "" || (defined($field_size) && $field_size < 0);
725 # We cannot take the address of a bitfield with MSVC
726 next if ($field_type_name =~ /:/);
728 if ($$optional_fields{$field_name}) {
730 } elsif (defined($field_size) && defined($field_offset)) {
731 $field_offset += $offset;
732 if ($field_name eq "DUMMYSTRUCTNAME") {
733 print OUT
"#ifdef NONAMELESSSTRUCT\n";
734 print OUT
" TEST_FIELD($type_name, $field_type_name, $field_name, ";
735 print OUT
"$field_offset, $field_size, $field_align);\n";
737 output_test_pack_fields
(\
*OUT
, $type_name2type, $type_name2optional, $type_name2optional_fields,
738 $type_name, $$type_name2type{$field_type_name}, $field_offset);
739 print OUT
"#endif\n";
741 print OUT
" TEST_FIELD($type_name, $field_type_name, $field_name, ";
742 print OUT
"$field_offset, $field_size, $field_align);\n";
745 # $output->write("$type_name: $field_type_name: $field_name: test not generated (offset not defined)\n");
750 ########################################################################
753 sub output_test_pack
($$$$) {
756 my $test_dir = shift;
759 my $type_names_used = shift;
761 $output->prefix("$test_dir: $test: ");
763 my @headers = $tests->get_section($test_dir, $test, "header");
764 my @type_names = $tests->get_section($test_dir, $test, "type");
766 my %type_name2optional;
767 my %type_name2optional_fields;
769 foreach my $_type_name (@type_names) {
770 my $type_name = $_type_name;
772 if ($type_name =~ s/^!//) {
773 $type_name2optional{$type_name}++;
776 my $optional_fields = {};
777 if ($type_name =~ s/:\s*(.*?)$//) {
778 my @fields = split /\s+/, $1;
779 foreach my $field (@fields) {
780 if ($field =~ s/^!//) {
781 $$optional_fields{$field}++;
786 $type_name2optional_fields{$type_name} = $optional_fields;
789 foreach my $header (@headers) {
790 my $type_name2type = $file2types{"include/$header"};
792 foreach my $_type_name (@type_names) {
793 my $type_name = $_type_name;
795 my $skip = ($type_name =~ s/^!//);
796 $type_name =~ s/:.*?$//;
797 my $type = $$type_name2type{$type_name};
798 if (!defined($type)) {
801 $$type_names_used{$type_name} = $skip ?
-1 : 1;
804 print OUT
"static void test_${test}_$type_name(void)\n";
806 output_test_pack_type
(\
*OUT
, $type_name2type, \
%type_name2optional, \
%type_name2optional_fields,
808 output_test_pack_fields
(\
*OUT
, $type_name2type, \
%type_name2optional, \
%type_name2optional_fields,
809 $type_name, $type, 0);
817 ########################################################################
820 sub output_file
($$$$) {
823 my $test_dir = shift;
824 my @tests = @
{(shift)};
826 my $type_names_used = shift;
828 output_header
(\
*OUT
, $test_dir, \
@tests);
830 foreach my $test (@tests) {
831 my %type_names_used2;
833 if ($test eq "pack") {
834 output_test_pack
(\
*OUT
, $test_dir, $test, \
%type_names_used2);
836 die "no such test ($test)\n";
839 print OUT
"static void test_$test(void)\n";
841 foreach my $type_name (sort(keys(%type_names_used2))) {
842 $$type_names_used{$type_name} = $type_names_used2{$type_name};
843 if ($type_names_used2{$type_name} > 0) {
844 print OUT
" test_${test}_$type_name();\n";
851 output_footer
(\
*OUT
, $test_dir, \
@tests);
856 ########################################################################
859 my %type_names_used = ();
861 my @test_dirs = $tests->get_test_dirs();
862 foreach my $test_dir (@test_dirs) {
863 my $file = "$wine_dir/$test_dir/generated.c";
864 replace_file
($file, \
&output_file
, $test_dir, \
@tests, \
%type_names_used);
867 foreach my $header (sort(keys(%file2types))) {
868 $output->prefix("$header: ");
869 $header =~ s
%^include
/%%;
870 my $type_name2type = $file2types{"include/$header"};
871 foreach my $_type_name (sort(keys(%$type_name2type))) {
872 my $type_name = $_type_name;
874 if (!exists($type_names_used{$type_name})) {
875 $output->write("$type_name: type not used\n");
880 $output->prefix("$winapi_dir/tests.dat: ");
881 foreach my $type_name (sort(keys(%type_names_used))) {
883 foreach my $header (sort(keys(%file2types))) {
884 my $type_name2type = $file2types{"include/$header"};
885 if (exists($type_name2type{$type_name})) {
891 $output->write("$type_name: type not used\n");