view src/main/macosx/exports/gendef.pl @ 763:51b5e0be61c3

Updated for new APIs
author Sam Lantinga <slouken@libsdl.org>
date Sun, 04 Jan 2004 15:11:35 +0000
parents cc47d783f096
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);
}