Mercurial > sdl-ios-xcode
annotate src/main/win32/exports/gendef.pl @ 1102:f0919504adfd
Revert back change between 1.29 and 1.30
author | Patrice Mandin <patmandin@gmail.com> |
---|---|
date | Wed, 27 Jul 2005 16:30:12 +0000 |
parents | 02759105b989 |
children | 6c7b69218276 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/perl |
2 # | |
3 # Program to take a set of header files and generate DLL export definitions | |
4 | |
5 while ( ($file = shift(@ARGV)) ) { | |
6 if ( ! defined(open(FILE, $file)) ) { | |
7 warn "Couldn't open $file: $!\n"; | |
8 next; | |
9 } | |
10 $printed_header = 0; | |
11 $file =~ s,.*/,,; | |
12 while (<FILE>) { | |
930
02759105b989
Date: Fri, 20 Aug 2004 08:31:20 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
345
diff
changeset
|
13 if ( / DECLSPEC.* SDLCALL ([^\s\(]+)/ ) { |
0 | 14 print "\t$1\n"; |
15 } | |
16 } | |
17 close(FILE); | |
18 } | |
19 # Special exports not in the header files | |
20 print "\tSDL_RegisterApp\n"; | |
145
29a638dc26db
Applied David MacCormack's patch to fix SDL_WINDOWID on Windows,
Sam Lantinga <slouken@libsdl.org>
parents:
0
diff
changeset
|
21 print "\tSDL_SetModuleHandle\n"; |