view src/main/beos/exports/genexp.pl @ 1446:47bf1767c4ca

Date: Mon, 27 Feb 2006 02:17:29 +0100 From: "William Petiot [exoide]" Subject: Re: [SDL] cvs version: questions regarding HAVE_STDIO_H in standard w I managed to get a first implementation of it, which I tested for "simple" use with tests sample apps, they work ok. I think this needs more tests. Here is the diff against CVS/SDL12, attached.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 27 Feb 2006 03:48:48 +0000
parents 6c7b69218276
children
line wrap: on
line source

#!/usr/bin/perl
#
# Program to take a set of header files and generate MWCC export definitions

# Special exports to ignore for this platform
$exclude{"SDL_putenv"} = 1;
$exclude{"SDL_getenv"} = 1;
$exclude{"SDL_CreateThread_Core"} = 1;

while ( ($file = shift(@ARGV)) ) {
	if ( ! defined(open(FILE, $file)) ) {
		warn "Couldn't open $file: $!\n";
		next;
	}
	$file =~ s,.*/,,;
	while (<FILE>) {
		if ( / DECLSPEC.* SDLCALL ([^\s\(]+)/ ) {
			if ( not $exclude{$1} ) {
				print "_$1\n";
			}
		}
	}
	close(FILE);
}

# Special exports to include for this platform