Specify include quotes in the tests.dat file.

This commit is contained in:
Alexandre Julliard 2003-10-24 04:43:16 +00:00
parent 2e4f0bc9ba
commit 2f31228dfe
2 changed files with 28 additions and 28 deletions

View file

@ -15,7 +15,7 @@ wingdi.h
%include
windows.h
"windows.h"
%type
@ -454,7 +454,7 @@ winbase.h
%include
windows.h
"windows.h"
%type
@ -584,8 +584,8 @@ windef.h
%include
ntstatus.h
windows.h
"ntstatus.h"
"windows.h"
%type
@ -869,14 +869,14 @@ shlobj.h
%include
stdarg.h
windef.h
winbase.h
wtypes.h
shellapi.h
winuser.h
wingdi.h
shlobj.h
<stdarg.h>
"windef.h"
"winbase.h"
"wtypes.h"
"shellapi.h"
"winuser.h"
"wingdi.h"
"shlobj.h"
%type
@ -945,12 +945,12 @@ shlwapi.h
%include
stdarg.h
windef.h
winbase.h
wtypes.h
winreg.h
shlwapi.h
<stdarg.h>
"windef.h"
"winbase.h"
"wtypes.h"
"winreg.h"
"shlwapi.h"
%type
@ -979,10 +979,10 @@ urlmon.h
%include
stdarg.h
windef.h
winbase.h
urlmon.h
<stdarg.h>
"windef.h"
"winbase.h"
"urlmon.h"
%type
@ -1012,7 +1012,7 @@ winuser.h
%include
windows.h
"windows.h"
%type
@ -1278,10 +1278,10 @@ wininet.h
%include
stdarg.h
windef.h
winbase.h
wininet.h
<stdarg.h>
"windef.h"
"winbase.h"
"wininet.h"
%type

View file

@ -465,7 +465,7 @@ sub output_header {
foreach my $test (@tests) {
my @includes = $tests->get_section($test_dir, $test, "include");
foreach my $include (@includes) {
print OUT "#include \"$include\"\n";
print OUT "#include $include\n";
}
}
print OUT "\n";