Qt+Win32: Make software updates more friendly.
[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  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  */
22
23 void init_capture_stop_conditions(void);
24 void cleanup_capture_stop_conditions(void);
25
26 extern const char *CND_CLASS_TIMEOUT;
27 extern const char *CND_CLASS_CAPTURESIZE;
28
29 /*
30  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
31  *
32  * Local Variables:
33  * c-basic-offset: 2
34  * tab-width: 8
35  * indent-tabs-mode: nil
36  * End:
37  *
38  * ex: set shiftwidth=2 tabstop=8 expandtab:
39  * :indentSize=2:tabSize=8:noTabs=true:
40  */