mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
503 B
34 lines
503 B
/*++
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
match.h
|
|
|
|
Originally from name.c by Gary Kimura
|
|
|
|
Author:
|
|
|
|
Stefan R. Steiner [ssteiner] ??-??-2000
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __H_MATCH_
|
|
#define __H_MATCH_
|
|
|
|
BOOLEAN
|
|
FsdRtlIsNameInExpression (
|
|
IN const CBsString& Expression, // Must be uppercased
|
|
IN const CBsString& Name // Must be uppercased
|
|
);
|
|
|
|
VOID
|
|
FsdRtlConvertWildCards(
|
|
IN OUT CBsString &FileName
|
|
);
|
|
|
|
#endif // __H_MATCH_
|
|
|