Changeset 104 for trunk/include/helpers/stringh.h
- Timestamp:
- Sep 27, 2001, 10:15:15 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/stringh.h
r91 r104 191 191 ********************************************************************/ 192 192 193 #define FNM_MATCH 0 194 #define FNM_NOMATCH 1 195 #define FNM_ERR 2 196 197 #define FNM_NOESCAPE 16 198 #define FNM_PATHNAME 32 199 #define FNM_PERIOD 64 200 201 #define _FNM_STYLE_MASK 15 202 203 #define _FNM_POSIX 0 204 #define _FNM_OS2 1 205 #define _FNM_DOS 2 206 207 #define _FNM_IGNORECASE 128 208 #define _FNM_PATHPREFIX 256 209 210 BOOL strhMatchOS2(const unsigned char* pcszMask, const unsigned char* pcszName); 193 #define FNM_MATCH 0 194 #define FNM_NOMATCH 1 195 #define FNM_ERR 2 196 197 #define FNM_NOESCAPE 16 198 #define FNM_PATHNAME 32 199 #define FNM_PERIOD 64 200 201 #define FNM_STYLE_MASK 15 202 203 #define FNM_POSIX 0 204 #define FNM_OS2 1 205 #define FNM_DOS 2 206 207 #define FNM_IGNORECASE 128 208 #define FNM_PATHPREFIX 256 209 210 BOOL strhMatchOS2(const char *pcszMask, const char *pcszName); 211 212 BOOL strhMatchExt(const char *pcszMask, 213 const char *pcszName, 214 unsigned flags); 211 215 212 216 /* ******************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.