FP: Fix comments
[metze/wireshark/wip.git] / ui / capture_globals.h
1 /* capture_globals.h
2  * Capture-related globals.
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10
11 #ifndef __CAPTURE_GLOBALS_H__
12 #define __CAPTURE_GLOBALS_H__
13
14 #include "capture_opts.h"
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
19
20 extern capture_options global_capture_opts;
21
22 #ifdef __cplusplus
23 }
24 #endif /* __cplusplus */
25
26 #endif /* __CAPTURE_GLOBALS_H__ */
27
28 /*
29  * Editor modelines
30  *
31  * Local Variables:
32  * c-basic-offset: 4
33  * tab-width: 8
34  * indent-tabs-mode: nil
35  * End:
36  *
37  * ex: set shiftwidth=4 tabstop=8 expandtab:
38  * :indentSize=4:tabSize=8:noTabs=true:
39  */