kerberos: make use of &NT_errors_ext
[wireshark-sm.git] / ui / all_files_wildcard.h
blob4499d8cc09990809a8b5b5d389944951edb54ef6
1 /** @file
3 * Definition of a macro for the file wildcard pattern that matches
4 * all files
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__
16 #ifdef _WIN32
18 * On Windows, the wildcard for matching all files is "*.*", which
19 * even matches files with no extension.
21 #define ALL_FILES_WILDCARD "*.*"
22 #else
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 "*"
28 #endif
30 #endif /* __ALL_FILES_WILDCARD_H__ */