Leaked source code of windows server 2003
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
537 B

  1. /*++
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. match.h
  5. Originally from name.c by Gary Kimura
  6. Author:
  7. Stefan R. Steiner [ssteiner] ??-??-2000
  8. Revision History:
  9. --*/
  10. #ifndef __H_MATCH_
  11. #define __H_MATCH_
  12. BOOLEAN
  13. FsdRtlIsNameInExpression (
  14. IN const CBsString& Expression, // Must be uppercased
  15. IN const CBsString& Name // Must be uppercased
  16. );
  17. VOID
  18. FsdRtlConvertWildCards(
  19. IN OUT CBsString &FileName
  20. );
  21. #endif // __H_MATCH_