1 #ifndef _WIMLIB_WILDCARD_H
2 #define _WIMLIB_WILDCARD_H
4 #include <wimlib/types.h>
8 #define WILDCARD_FLAG_WARN_IF_NO_MATCH 0x00000001
9 #define WILDCARD_FLAG_ERROR_IF_NO_MATCH 0x00000002
10 #define WILDCARD_FLAG_CASE_INSENSITIVE 0x00000004
13 expand_wildcard(WIMStruct *wim,
14 const tchar *wildcard_path,
15 int (*consume_dentry)(struct wim_dentry *, void *),
16 void *consume_dentry_ctx,
21 fnmatch(const tchar *pattern, const tchar *string, int flags);
22 # define FNM_CASEFOLD 0x1
23 # define FNM_PATHNAME 0x2
24 # define FNM_NOESCAPE 0x4
25 # define FNM_NOMATCH 1
29 # warning "FNM_CASEFOLD not defined!"
30 # define FNM_CASEFOLD 0
34 #endif /* _WIMLIB_WILDCARD_H */