Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
copyright_info.h
1 /* copyright_info.h
2  * Declarations of outines to report copyright information for stuff used
3  * by Wireshark
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef __WSUTIL_COPYRIGHT_INFO_H__
13 #define __WSUTIL_COPYRIGHT_INFO_H__
14 
15 #include "ws_symbol_export.h"
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif /* __cplusplus */
20 
21 /*
22  * Get copyright information.
23  */
24 WS_DLL_PUBLIC const char *get_copyright_info(void);
25 
26 #ifdef __cplusplus
27 }
28 #endif /* __cplusplus */
29 
30 #endif /* __WSUTIL_COPYRIGHT_INFO_H__ */