nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 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 | * This program is free software; you can redistribute it and/or |
||
11 | * modify it under the terms of the GNU General Public License |
||
12 | * as published by the Free Software Foundation; either version 2 |
||
13 | * of the License, or (at your option) any later version. |
||
14 | * |
||
15 | * This program is distributed in the hope that it will be useful, |
||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
18 | * GNU General Public License for more details. |
||
19 | * |
||
20 | * You should have received a copy of the GNU General Public License |
||
21 | * along with this program; if not, write to the Free Software |
||
22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
||
23 | */ |
||
24 | |||
25 | #ifndef PERSFILEPATH_OPT_H |
||
26 | #define PERSFILEPATH_OPT_H |
||
27 | |||
28 | #ifdef __cplusplus |
||
29 | extern "C" { |
||
30 | #endif /* __cplusplus */ |
||
31 | |||
32 | /* |
||
33 | * process command line option that affects the paths of the directories |
||
34 | * used for personal files (configuration, saved captures) |
||
35 | */ |
||
36 | extern gboolean persfilepath_opt(int opt, const char *optstr); |
||
37 | |||
38 | #ifdef __cplusplus |
||
39 | } |
||
40 | #endif /* __cplusplus */ |
||
41 | |||
42 | #endif /* PERSFILEPATH_OPT_H */ |
||
43 | |||
44 | /* |
||
45 | * Editor modelines - http://www.wireshark.org/tools/modelines.html |
||
46 | * |
||
47 | * Local variables: |
||
48 | * c-basic-offset: 4 |
||
49 | * tab-width: 8 |
||
50 | * indent-tabs-mode: nil |
||
51 | * End: |
||
52 | * |
||
53 | * vi: set shiftwidth=4 tabstop=8 expandtab: |
||
54 | * :indentSize=4:tabSize=8:noTabs=true: |
||
55 | */ |