aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/copyright_info.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-06-21 10:32:12 -0700
committerGuy Harris <guy@alum.mit.edu>2014-06-21 17:33:05 +0000
commit43443af0acc93e47a145688171049af65eed762f (patch)
tree2e2dae2d9706981a43a1c6f2edd0f1e7771eaec3 /wsutil/copyright_info.h
parent37b903d7abab78a6f13b61feb88f62f2fa638151 (diff)
Move get_copyright_info() to wsutil.
Change-Id: I75c1c747cd2b4a9845c659636582d54b2caecf1a Reviewed-on: https://code.wireshark.org/review/2510 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/copyright_info.h')
-rw-r--r--wsutil/copyright_info.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/wsutil/copyright_info.h b/wsutil/copyright_info.h
new file mode 100644
index 0000000000..73601515f0
--- /dev/null
+++ b/wsutil/copyright_info.h
@@ -0,0 +1,42 @@
+/* copyright_info.h
+ * Declarations of outines to report copyright information for stuff used
+ * by Wireshark
+ *
+ * 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 __WSUTIL_COPYRIGHT_INFO_H__
+#define __WSUTIL_COPYRIGHT_INFO_H__
+
+#include "ws_symbol_export.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+/*
+ * Get copyright information.
+ */
+WS_DLL_PUBLIC const char *get_copyright_info(void);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __WSUTIL_COPYRIGHT_INFO_H__ */