source: roaraudio/tools/create-meta-types @ 5439:7950543cabbc

Last change on this file since 5439:7950543cabbc was 0:2a41d2f42394, checked in by phi, 16 years ago

Initial revision

  • Property exe set to *
File size: 165 bytes
Line 
1#!/usr/bin/perl
2
3use strict;
4
5my $offset = int(shift(@ARGV));
6
7foreach (@ARGV) {
8 printf("#define ROAR_META_TYPE_%-12s  %i\n", uc($_), $offset);
9 $offset++;
10}
11
12
13#ll
Note: See TracBrowser for help on using the repository browser.