Commit d8bb3030 authored by Alexandre Julliard's avatar Alexandre Julliard

make_specfiles: Don't add forwards to the api-ms-* dlls.

parent 76d3f043
@ stdcall -norelay GetProcessHeap() kernel32.GetProcessHeap
@ stdcall GetProcessHeap() kernel32.GetProcessHeap
@ stdcall GetProcessHeaps(long ptr) kernel32.GetProcessHeaps
@ stdcall HeapAlloc(long long long) kernel32.HeapAlloc
@ stdcall HeapCompact(long long) kernel32.HeapCompact
......
@ stdcall -norelay GetProcessHeap() kernel32.GetProcessHeap
@ stdcall GetProcessHeap() kernel32.GetProcessHeap
@ stdcall GetProcessHeaps(long ptr) kernel32.GetProcessHeaps
@ stdcall HeapAlloc(long long long) kernel32.HeapAlloc
@ stdcall HeapCompact(long long) kernel32.HeapCompact
......
......@@ -575,7 +575,7 @@ sub update_spec_file($)
my $func = $descr{name};
if (!defined $funcs{$func})
{
$funcs{$func} = \%descr unless $commented_out;
$funcs{$func} = \%descr unless $commented_out || $name =~ /-/;
goto done;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment