CSS: Add a margin.
[metze/wireshark/wip.git] / capture_stop_conditions.h
1 /* capture_stop_conditions.h
2  * Implementation for 'stop condition handler'.
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 void init_capture_stop_conditions(void);
12 void cleanup_capture_stop_conditions(void);
13
14 extern const char *CND_CLASS_TIMEOUT;
15 extern const char *CND_CLASS_CAPTURESIZE;
16 extern const char *CND_CLASS_INTERVAL;
17
18 /*
19  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
20  *
21  * Local Variables:
22  * c-basic-offset: 2
23  * tab-width: 8
24  * indent-tabs-mode: nil
25  * End:
26  *
27  * ex: set shiftwidth=2 tabstop=8 expandtab:
28  * :indentSize=2:tabSize=8:noTabs=true:
29  */