aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rdm.h
diff options
context:
space:
mode:
authorzeuz <czingerl@gmail.com>2014-12-16 19:08:53 +0100
committerAnders Broman <a.broman58@gmail.com>2014-12-17 18:25:59 +0000
commit201840477f50b5c163c6ce3b9237b15961ae400f (patch)
treececb1a300c145acfded77c6a1c4a3e8dda97cde5 /epan/dissectors/packet-rdm.h
parent2d6adb246628da6ce276db6b7dc2fa7813cc3ec5 (diff)
RDM: Made PID array global (can be reused in packet-artnet.c)
Fixed deprecated API warning Change-Id: I761181baf9f5ae31a8a3807eb27d791d8868dcde Reviewed-on: https://code.wireshark.org/review/5786 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rdm.h')
-rw-r--r--epan/dissectors/packet-rdm.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/epan/dissectors/packet-rdm.h b/epan/dissectors/packet-rdm.h
new file mode 100644
index 0000000000..50c13a9400
--- /dev/null
+++ b/epan/dissectors/packet-rdm.h
@@ -0,0 +1,35 @@
+/* packet-rdm.h
+ * Declarations for dissecting RDM PIDs
+ * Copyright 2014, Claudius Zingerli <czingerl@gmail.com>
+ *
+ * RDM Parameter IDs (PIDs) are used in
+ * - packet-rdm.c (Ansi E1.20,E1.33 (ACN))
+ * - packet-artnet.c (Art-Net3)
+ * -> Declarations remain in packet-rdm.c
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifndef __PACKET_RDM_H__
+#define __PACKET_RDM_H__
+
+extern value_string_ext rdm_param_id_vals_ext;
+
+
+#endif /* #ifndef __PACKET_RDM_H__ */