comparison src/main/macosx/exports/gendef.pl @ 345:05b97424225f

*** empty log message ***
author Sam Lantinga <slouken@libsdl.org>
date Sat, 13 Apr 2002 18:08:45 +0000
parents 9154ec9ca3d2
children cc47d783f096
comparison
equal deleted inserted replaced
344:7a69392b8599 345:05b97424225f
8 next; 8 next;
9 } 9 }
10 $printed_header = 0; 10 $printed_header = 0;
11 $file =~ s,.*/,,; 11 $file =~ s,.*/,,;
12 while (<FILE>) { 12 while (<FILE>) {
13 if ( /DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { 13 if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
14 print "\t_$1\n"; 14 print "\t_$1\n";
15 } 15 }
16 } 16 }
17 close(FILE); 17 close(FILE);
18 } 18 }