tests: add regression tests for Follow TCP Stream
[metze/wireshark/wip.git] / ui / last_open_dir.h
1 /* last_open_dir.h
2  * Routines to fetch the last directory in which a file was opened;
3  * its implementation is GUI-dependent, but the API isn't
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11
12 #ifndef __UI_LAST_OPEN_DIR_H__
13 #define __UI_LAST_OPEN_DIR_H__
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif /* __cplusplus */
18
19 /** Get the latest opened directory.
20  *
21  * @return the dirname
22  */
23 extern char *get_last_open_dir(void);
24
25 #ifdef __cplusplus
26 }
27 #endif /* __cplusplus */
28
29 #endif /* __UI_LAST_OPEN_DIR_H__ */
30
31 /*
32  * Editor modelines
33  *
34  * Local Variables:
35  * c-basic-offset: 4
36  * tab-width: 8
37  * indent-tabs-mode: nil
38  * End:
39  *
40  * ex: set shiftwidth=4 tabstop=8 expandtab:
41  * :indentSize=4:tabSize=8:noTabs=true:
42  */