aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/compiler_info.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-06-21 12:34:26 -0700
committerGuy Harris <guy@alum.mit.edu>2014-06-21 19:35:06 +0000
commitd99d1b90f84bdf5842281267a77cc7c1334cc67b (patch)
treeeb276887f29a1dd214b0c628cd0ef6c2078006f3 /wsutil/compiler_info.h
parente5abf34f89f62222f641b2f23cfafa2f15949ce5 (diff)
Add a get_compiler_info() routine in libwsutil to get compiler information.
Change-Id: I8ccb6187f2ee0255460f448aee170768b6fa3f5d Reviewed-on: https://code.wireshark.org/review/2519 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/compiler_info.h')
-rw-r--r--wsutil/compiler_info.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/wsutil/compiler_info.h b/wsutil/compiler_info.h
new file mode 100644
index 0000000000..e64175d4de
--- /dev/null
+++ b/wsutil/compiler_info.h
@@ -0,0 +1,39 @@
+/* compiler_info.h
+ * Declarations of outines to report information about the compiler used
+ * to compile 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_COMPILER_INFO_H__
+#define __WSUTIL_COMPILER_INFO_H__
+
+#include "ws_symbol_export.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+WS_DLL_PUBLIC void get_compiler_info(GString *str);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
+#endif /* __WSUTIL_COMPILER_INFO_H__ */