scroll mode for very long start menus
[reactos.git] / posix / include / fnmatch.h
1 /* $Id: fnmatch.h,v 1.4 2002/10/29 04:45:08 rex Exp $
2 */
3 /*
4 * fnmatch.h
5 *
6 * filename-matching types. Conforming to the Single UNIX(r)
7 * Specification Version 2, System Interface & Headers Issue 5
8 *
9 * This file is part of the ReactOS Operating System.
10 *
11 * Contributors:
12 * Created by KJK::Hyperion <noog@libero.it>
13 *
14 * THIS SOFTWARE IS NOT COPYRIGHTED
15 *
16 * This source code is offered for use in the public domain. You may
17 * use, modify or distribute it freely.
18 *
19 * This code is distributed in the hope that it will be useful but
20 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
21 * DISCLAMED. This includes but is not limited to warranties of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 *
24 */
25 #ifndef __FNMATCH_H_INCLUDED__
26 #define __FNMATCH_H_INCLUDED__
27
28 /* INCLUDES */
29 #ifdef __PSXDLL__
30
31 /* headers for internal usage by psxdll.dll and ReactOS */
32
33 #else /* ! __PSXDLL__ */
34
35 /* standard POSIX headers */
36
37 #endif
38
39 /* OBJECTS */
40
41 /* TYPES */
42
43 /* CONSTANTS */
44 /* Flags */
45 #define FNM_PATHNAME (0x00000001) /* Slash in string only matches slash \
46 in pattern. */
47 #define FNM_PERIOD (0x00000002) /* Leading period in string must be \
48 exactly matched by period in \
49 pattern. */
50 #define FNM_NOESCAPE (0x00000004) /* Disable backslash escaping. */
51
52 /* Return values */
53 #define FNM_NOMATCH (1) /* The string does not match the specified \
54 pattern. */
55 #define FNM_NOSYS (2) /* The implementation does not support this \
56 function. */
57
58 /* PROTOTYPES */
59 int fnmatch(const char *, const char *, int);
60
61 /* MACROS */
62
63 #endif /* __FNMATCH_H_INCLUDED__ */
64
65 /* EOF */
66