aboutsummaryrefslogtreecommitdiffstats
path: root/process-x11-fields.pl
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-20 19:20:31 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-04-20 19:20:31 +0000
commit05aaeffde42f147eb5589b974a8690547fcbd3e3 (patch)
tree78e7ab6d5f1e14ec208c02c8aca0a24443bf7328 /process-x11-fields.pl
parent916f26d150b7c6b03bdc7e26e8c365e4b7efc10a (diff)
Put an RCS ID/GPL/copyright notice into the "process-x11-fields.pl"
script. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3346 f5534014-38df-0310-8fa8-9805f1628bb7
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;