21 lines
430 B
Perl
21 lines
430 B
Perl
#!/usr/bin/perl
|
|
#
|
|
# Program to take a set of header files and generate DLL export definitions
|
|
|
|
while ( ($file = shift(@ARGV)) ) {
|
|
if ( ! defined(open(FILE, $file)) ) {
|
|
warn "Couldn't open $file: $!\n";
|
|
next;
|
|
}
|
|
$printed_header = 0;
|
|
$file =~ s,.*/,,;
|
|
while (<FILE>) {
|
|
if ( /^__EXPORT__.*\s\**([^\s\(]+)\(/ ) {
|
|
print "\t_$1\n";
|
|
} elsif ( /^__EXPORT__.*\s\**([^\s\(]+)$/ ) {
|
|
print "\t_$1\n";
|
|
}
|
|
}
|
|
close(FILE);
|
|
}
|