Wireshark  4.3.0
The Wireshark network protocol analyzer
all_files_wildcard.h
Go to the documentation of this file.
1 
13 #ifndef __ALL_FILES_WILDCARD_H__
14 #define __ALL_FILES_WILDCARD_H__
15 
16 #ifdef _WIN32
17 /*
18  * On Windows, the wildcard for matching all files is "*.*", which
19  * even matches files with no extension.
20  */
21 #define ALL_FILES_WILDCARD "*.*"
22 #else
23 /*
24  * On UN*X, the wildcard for matching all files is "*"; "*.*" only
25  * matches files with at least one extension.
26  */
27 #define ALL_FILES_WILDCARD "*"
28 #endif
29 
30 #endif /* __ALL_FILES_WILDCARD_H__ */