Sha256: 9b545b776313b02a57414c0ab084a5658d5e699db54013e7192c2ad21924d364

Contents?: true

Size: 839 Bytes

Versions: 21

Compression:

Stored size: 839 Bytes

Contents

#!/usr/bin/perl
##
## Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
## Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
##
## This program is distributed under the terms and conditions of the GNU
## General Public License Version 2 as published by the Free Software
## Foundation or, at your option, any later version.

use strict;
use warnings;

do 'bin/make.pl';

# function pointer declaration
sub make_pfn_decl($%)
{
    our $export;
    return $export . " PFN" . (uc $_[0]) . "PROC " . prefixname($_[0]) . ";";
}

my @extlist = ();
my %extensions = ();

our $export = shift;

if (@ARGV)
{
    @extlist = @ARGV;

	foreach my $ext (sort @extlist)
	{
		my ($extname, $exturl, $extstring, $reuse, $types, $tokens, $functions, $exacts) = parse_ext($ext);
		output_decls($functions, \&make_pfn_decl);
	}
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
pixo-0.4.5 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.4.4 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.4.3 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.4.2 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.4.1 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.4.0 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.3.2 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.3.1 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.3.0 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.6 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.5 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.4 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.3 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.2 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.1 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.2.0 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.1.4 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.1.3 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.1.2 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl
pixo-0.1.1 ext/pixo/ext/glew/auto/bin/make_struct_fun.pl