regen pidl all: rm epan/dissectors/pidl/*-stamp; pushd epan/dissectors/pidl/ && make...
[wireshark-sm.git] / wsutil / crash_info.h
blob37840067237236c18ba7c272607df7f866094dbd
1 /** @file
2 * Routines to try to provide more useful information in crash dumps.
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <gerald@wireshark.org>
6 * Copyright 2006 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
11 #ifndef __CRASH_INFO_H__
12 #define __CRASH_INFO_H__
14 #include <wireshark.h>
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
20 WS_DLL_PUBLIC void ws_vadd_crash_info(const char *fmt, va_list ap);
22 WS_DLL_PUBLIC void ws_add_crash_info(const char *fmt, ...)
23 G_GNUC_PRINTF(1,2);
25 #ifdef __cplusplus
27 #endif /* __cplusplus */
29 #endif /* __CRASH_INFO_H__ */