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.

17 lines
610 B

  1. //---[ wildmat.h ]-------------------------------------------------------------
  2. //
  3. // Description:
  4. // Provides support for a simple wildcard matching mechanism for
  5. // matching email addresses.
  6. //
  7. // Copyright (C) Microsoft Corp. 1997. All Rights Reserved.
  8. //
  9. // ---------------------------------------------------------------------------
  10. #ifndef _WILDMAT_H_
  11. #define _WILDMAT_H_
  12. //---[ Prototypes ]------------------------------------------------------------
  13. HRESULT MatchEmailOrDomainName(LPSTR szEmail, LPSTR szEmailDomain, LPSTR szPattern, BOOL fIsEmail);
  14. #endif // _WILDMAT_H_