mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 16:20:37 +00:00
1688a8d7c5
svn path=/trunk/; revision=1500
12 lines
286 B
C
12 lines
286 B
C
/* $Id: Pattern.h,v 1.1 2001/01/10 01:25:29 narnaoud Exp $ */
|
|
|
|
// Pattern.h: decalration for pattern functions
|
|
|
|
#if !defined(PATTERN_H__INCLUDED_)
|
|
#define PATTERN_H__INCLUDED_
|
|
|
|
#define PATTERN_MATCH_ALL _T("*")
|
|
|
|
BOOL PatternMatch(const TCHAR *pszPattern, const TCHAR *pszTry);
|
|
|
|
#endif
|