# HG changeset patch # User Sam Lantinga # Date 1060537736 0 # Node ID cc47d783f096fffa572cf7d08215ee980dd85652 # Parent 9dcfc694a1e4d87ed627ede8cd0b3d9e38c59d7a Date: Sun, 10 Aug 2003 13:24:45 -0400 From: Darrell Walisser Subject: Re: Updated projects? There was one additional patch I forgot to send. I needed to add a few exports to the exports file. diff -r 9dcfc694a1e4 -r cc47d783f096 src/main/macosx/exports/SDL.x --- a/src/main/macosx/exports/SDL.x Sun Aug 10 07:46:21 2003 +0000 +++ b/src/main/macosx/exports/SDL.x Sun Aug 10 17:48:56 2003 +0000 @@ -1,3 +1,6 @@ + .objc_class_name_SDL_QuartzWindow + .objc_class_name_SDL_QuartzWindowView + .objc_class_name_SDL_QuartzWindowDelegate _SDL_Init _SDL_InitSubSystem _SDL_QuitSubSystem diff -r 9dcfc694a1e4 -r cc47d783f096 src/main/macosx/exports/gendef.pl --- a/src/main/macosx/exports/gendef.pl Sun Aug 10 07:46:21 2003 +0000 +++ b/src/main/macosx/exports/gendef.pl Sun Aug 10 17:48:56 2003 +0000 @@ -2,6 +2,11 @@ # # Program to take a set of header files and generate DLL export definitions +# Export Objective-C classes for Cocoa integration support +print "\t.objc_class_name_SDL_QuartzWindow\n"; +print "\t.objc_class_name_SDL_QuartzWindowView\n"; +print "\t.objc_class_name_SDL_QuartzWindowDelegate\n"; + while ( ($file = shift(@ARGV)) ) { if ( ! defined(open(FILE, $file)) ) { warn "Couldn't open $file: $!\n";