Skip to content

Latest commit

 

History

History
executable file
·
21 lines (20 loc) · 464 Bytes

gendef.pl

File metadata and controls

executable file
·
21 lines (20 loc) · 464 Bytes
 
Apr 26, 2001
Apr 26, 2001
1
2
3
4
5
6
7
8
9
10
11
12
#!/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>) {
Apr 13, 2002
Apr 13, 2002
13
if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) {
Apr 26, 2001
Apr 26, 2001
14
15
16
17
18
19
20
print "\t$1\n";
}
}
close(FILE);
}
# Special exports not in the header files
print "\tSDL_RegisterApp\n";
Aug 9, 2001
Aug 9, 2001
21
print "\tSDL_SetModuleHandle\n";