sbsv1/abld/e32util/h2inc.pl
changeset 606 30b30f9da0b7
parent 599 fa7a3cc6effd
--- a/sbsv1/abld/e32util/h2inc.pl	Fri Jun 25 20:58:33 2010 +0800
+++ b/sbsv1/abld/e32util/h2inc.pl	Tue Jun 29 14:52:54 2010 +0800
@@ -1,3 +1,4 @@
+#!/usr/bin/perl
 # Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
 # All rights reserved.
 # This component and the accompanying materials are made available
@@ -19,6 +20,11 @@
 # 
 #
 
+# Version
+my $MajorVersion = 1;
+my $MinorVersion = 1;
+my $PatchVersion = 0;
+
 %basictypes = (
 	TInt8		=>	1,
 	TUint8		=>	1,
@@ -38,7 +44,7 @@
 );
 
 if (scalar(@ARGV)!=3) {
-	die "perl h2inc.pl <input.h> <output.inc> <format>\n";
+	die "H2INC format management tools V$MajorVersion.$MinorVersion.$PatchVersion\nperl h2inc.pl <input.h> <output.inc> <format>\n";
 }
 my ($infile, $outfile, $format) = @ARGV;
 open IN, $infile or die "Can't open $infile for input\n";