Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
persfilepath_opt.h
1 /* persfilepath_opt.h
2  * Definitions of routines to handle command-line options to set paths
3  * for directories containing personal files (configuration, saved
4  * captures)
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef PERSFILEPATH_OPT_H
14 #define PERSFILEPATH_OPT_H
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
19 
20 /*
21  * process command line option that affects the paths of the directories
22  * used for personal files (configuration, saved captures)
23  */
24 extern gboolean persfilepath_opt(int opt, const char *optstr);
25 
26 #ifdef __cplusplus
27 }
28 #endif /* __cplusplus */
29 
30 #endif /* PERSFILEPATH_OPT_H */
31 
32 /*
33  * Editor modelines - http://www.wireshark.org/tools/modelines.html
34  *
35  * Local variables:
36  * c-basic-offset: 4
37  * tab-width: 8
38  * indent-tabs-mode: nil
39  * End:
40  *
41  * vi: set shiftwidth=4 tabstop=8 expandtab:
42  * :indentSize=4:tabSize=8:noTabs=true:
43  */