annotate src/main/macosx/exports/gendef.pl @ 1541:157001382dfd

Quartz implementation for SDL_DisplayYUVOverlay() was returning non-zero on error, instead of zero, contrary to documentation. Fixes Bugzilla #165.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 15 Mar 2006 05:52:31 +0000
parents 84cecd0b64b4
children
rev   line source
47
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
1 #!/usr/bin/perl
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
2 #
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
3 # Program to take a set of header files and generate DLL export definitions
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
4
1317
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
5 # Special exports to ignore for this platform
825
618fcc5861c8 *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents: 791
diff changeset
6
47
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
7 while ( ($file = shift(@ARGV)) ) {
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
8 if ( ! defined(open(FILE, $file)) ) {
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
9 warn "Couldn't open $file: $!\n";
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
10 next;
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
11 }
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
12 $file =~ s,.*/,,;
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
13 while (<FILE>) {
930
02759105b989 Date: Fri, 20 Aug 2004 08:31:20 +0200
Sam Lantinga <slouken@libsdl.org>
parents: 825
diff changeset
14 if ( / DECLSPEC.* SDLCALL ([^\s\(]+)/ ) {
1317
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
15 if ( not $exclude{$1} ) {
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
16 print "\t_$1\n";
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
17 }
47
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
18 }
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
19 }
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
20 close(FILE);
45b1c4303f87 Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
diff changeset
21 }
1317
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
22
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
23 # Special exports to include for this platform
1529
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
24 print "\t_SDL_strrev\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
25 print "\t_SDL_strupr\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
26 print "\t_SDL_strlwr\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
27 print "\t_SDL_ltoa\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
28 print "\t_SDL_ultoa\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
29 print "\t_SDL_lltoa\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
30 print "\t_SDL_ulltoa\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
31 print "\t_SDL_iconv\n";
84cecd0b64b4 Updated MacOS Classic and MacOS X exports list
Sam Lantinga <slouken@libsdl.org>
parents: 1516
diff changeset
32 print "\t_SDL_iconv_string\n";
1317
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
33 print "\t.objc_class_name_SDL_QuartzWindow\n";
6c7b69218276 Updated exports
Sam Lantinga <slouken@libsdl.org>
parents: 930
diff changeset
34 print "\t.objc_class_name_SDL_QuartzWindowDelegate\n";