# HG changeset patch # User Sam Lantinga <slouken@libsdl.org> # Date 1076870745 0 # Node ID 618fcc5861c873694c50f72f33c1e043aeb0ab7d # Parent a3bf0451c79bfe22d046a0d4d38d55380b95b9a1 *** empty log message *** diff -r a3bf0451c79b -r 618fcc5861c8 src/main/macosx/exports/SDL.x --- a/src/main/macosx/exports/SDL.x Sun Feb 15 08:32:25 2004 +0000 +++ b/src/main/macosx/exports/SDL.x Sun Feb 15 18:45:45 2004 +0000 @@ -1,3 +1,5 @@ + .objc_class_name_SDL_QuartzWindow + .objc_class_name_SDL_QuartzWindowDelegate _SDL_Init _SDL_InitSubSystem _SDL_QuitSubSystem diff -r a3bf0451c79b -r 618fcc5861c8 src/main/macosx/exports/gendef.pl --- a/src/main/macosx/exports/gendef.pl Sun Feb 15 08:32:25 2004 +0000 +++ b/src/main/macosx/exports/gendef.pl Sun Feb 15 18:45:45 2004 +0000 @@ -2,6 +2,10 @@ # # Program to take a set of header files and generate DLL export definitions +# print objective-c exports +print "\t.objc_class_name_SDL_QuartzWindow\n"; +print "\t.objc_class_name_SDL_QuartzWindowDelegate\n"; + while ( ($file = shift(@ARGV)) ) { if ( ! defined(open(FILE, $file)) ) { warn "Couldn't open $file: $!\n";