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.
18 lines
610 B
18 lines
610 B
//---[ wildmat.h ]-------------------------------------------------------------
|
|
//
|
|
// Description:
|
|
// Provides support for a simple wildcard matching mechanism for
|
|
// matching email addresses.
|
|
//
|
|
// Copyright (C) Microsoft Corp. 1997. All Rights Reserved.
|
|
//
|
|
// ---------------------------------------------------------------------------
|
|
|
|
#ifndef _WILDMAT_H_
|
|
#define _WILDMAT_H_
|
|
|
|
//---[ Prototypes ]------------------------------------------------------------
|
|
|
|
HRESULT MatchEmailOrDomainName(LPSTR szEmail, LPSTR szEmailDomain, LPSTR szPattern, BOOL fIsEmail);
|
|
|
|
#endif // _WILDMAT_H_
|