Qt: Remove an unneeded function.
[metze/wireshark/wip.git] / ui / all_files_wildcard.h
1 /* all_files_wildcard.h
2  * Definition of a macro for the file wildcard pattern that matches
3  * all files
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 __ALL_FILES_WILDCARD_H__
13 #define __ALL_FILES_WILDCARD_H__
14
15 #ifdef _WIN32
16 /*
17  * On Windows, the wildcard for matching all files is "*.*", which
18  * even matches files with no extension.
19  */
20 #define ALL_FILES_WILDCARD "*.*"
21 #else
22 /*
23  * On UN*X, the wildcard for matching all files is "*"; "*.*" only
24  * matches files with at least one extension.
25  */
26 #define ALL_FILES_WILDCARD "*"
27 #endif
28
29 #endif /* __ALL_FILES_WILDCARD_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  */