aboutsummaryrefslogtreecommitdiffstats
path: root/process-x11-fields.pl
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-04-20 19:20:31 +0000
committerGuy Harris <guy@alum.mit.edu>2001-04-20 19:20:31 +0000
commit690ef44bff5985b6ab0adb0b5e3618f8e1e03863 (patch)
tree78e7ab6d5f1e14ec208c02c8aca0a24443bf7328 /process-x11-fields.pl
parent5827d2e45b085a12aebc8b68d7afb5cc397fd804 (diff)
Put an RCS ID/GPL/copyright notice into the "process-x11-fields.pl"
script. svn path=/trunk/; revision=3346
Diffstat (limited to 'process-x11-fields.pl')
-rw-r--r--process-x11-fields.pl27
1 files changed, 27 insertions, 0 deletions
diff --git a/process-x11-fields.pl b/process-x11-fields.pl
index 816b539b38..00b2177edd 100644
--- a/process-x11-fields.pl
+++ b/process-x11-fields.pl
@@ -1,4 +1,31 @@
#!/usr/bin/perl
+#
+# Script to convert "x11-fields" file, listing fields for
+# X11 dissector, into header files declaring field-index
+# values and field definitions for those fields.
+#
+# Copyright 2000, Christophe Tronche <ch.tronche@computer.org>
+#
+# $Id: process-x11-fields.pl,v 1.3 2001/04/20 19:20:31 guy Exp $
+#
+# Ethereal - Network traffic analyzer
+# By Gerald Combs <gerald@ethereal.com>
+# Copyright 1998 Gerald Combs
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
open(DECL, ">x11-declarations.h") || die;
open(REG, ">x11-register-info.h") || die;