Mercurial > sdl-ios-xcode
view src/main/macosx/exports/gendef.pl @ 685:cc47d783f096
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.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 10 Aug 2003 17:48:56 +0000 |
parents | 05b97424225f |
children | ab0d977f91f8 |
line wrap: on
line source
#!/usr/bin/perl # # 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"; next; } $printed_header = 0; $file =~ s,.*/,,; while (<FILE>) { if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { print "\t_$1\n"; } } close(FILE); }