*** empty log message ***

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40346
This commit is contained in:
Sam Lantinga 2002-04-13 18:08:45 +00:00
parent 8ef049cc3e
commit 1eca7853fd
4 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ while ( ($file = shift(@ARGV)) ) {
} }
$file =~ s,.*/,,; $file =~ s,.*/,,;
while (<FILE>) { while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "_$1\n"; print "_$1\n";
} }
} }

View file

@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) {
$printed_header = 0; $printed_header = 0;
$file =~ s,.*/,,; $file =~ s,.*/,,;
while (<FILE>) { while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n"; print "\t$1\n";
} }
} }

View file

@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) {
$printed_header = 0; $printed_header = 0;
$file =~ s,.*/,,; $file =~ s,.*/,,;
while (<FILE>) { while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t_$1\n"; print "\t_$1\n";
} }
} }

View file

@ -10,7 +10,7 @@ while ( ($file = shift(@ARGV)) ) {
$printed_header = 0; $printed_header = 0;
$file =~ s,.*/,,; $file =~ s,.*/,,;
while (<FILE>) { while (<FILE>) {
if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
print "\t$1\n"; print "\t$1\n";
} }
} }