3 * Definition of a macro for the file wildcard pattern that matches
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef __ALL_FILES_WILDCARD_H__
14 #define __ALL_FILES_WILDCARD_H__
18 * On Windows, the wildcard for matching all files is "*.*", which
19 * even matches files with no extension.
21 #define ALL_FILES_WILDCARD "*.*"
24 * On UN*X, the wildcard for matching all files is "*"; "*.*" only
25 * matches files with at least one extension.
27 #define ALL_FILES_WILDCARD "*"
30 #endif /* __ALL_FILES_WILDCARD_H__ */