summaryrefslogtreecommitdiffstats
path: root/ui/decode_as_utils.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/decode_as_utils.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/decode_as_utils.h')
-rw-r--r--ui/decode_as_utils.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/decode_as_utils.h b/ui/decode_as_utils.h
new file mode 100644
index 00000000..1dc30b83
--- /dev/null
+++ b/ui/decode_as_utils.h
@@ -0,0 +1,37 @@
+/** @file
+ *
+ * "Decode As" UI utility routines.
+ *
+ * By David Hampton <dhampton@mac.com>
+ * Copyright 2001 David Hampton
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later*
+ */
+
+#ifndef __DECODE_AS_UTILS_H__
+#define __DECODE_AS_UTILS_H__
+
+#include "ws_symbol_export.h"
+
+/** @file
+ * "Decode As" / "User Specified Decodes" dialog box.
+ * @ingroup main_ui_group
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/*
+* This is the template for the decode as option; it is shared between the
+* various functions that output the usage for this parameter.
+*/
+#define DECODE_AS_ARG_TEMPLATE "<layer_type>==<selector>,<decode_as_protocol>"
+
+gboolean decode_as_command_option(const gchar *cl_param);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __DECODE_AS_UTILS_H__ */