Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

54 lines
889 B

#ifndef _WEBHELP_INCLUDED_
#define _WEBHELP_INCLUDED_
HRESULT
EnumerateTrustedDomains (
LPCWSTR wszComputer,
LPWSTR * pmszDomains
);
HRESULT
GetPrimaryDomain (
LPCWSTR wszComputer,
LPWSTR * pwszPrimaryDomain
);
HRESULT
CheckNTAccount (
LPCWSTR wszComputer,
LPCWSTR wszUsername,
BOOL * pfExists
);
HRESULT
CreateNTAccount (
LPCWSTR wszComputer,
LPCWSTR wszDomain,
LPCWSTR wszUsername,
LPCWSTR wszPassword
);
BOOL
IsValidEmailAddress (
LPCWSTR wszEmailAddress
);
void
StringToUpper (
LPWSTR wsz
);
#if 0
HRESULT
DeleteMailbox (
LPCWSTR wszServer,
LPCWSTR wszAlias,
LPCWSTR wszVirtualDirectoryPath,
LPCWSTR wszUsername, // OPTIONAL
LPCWSTR wszPassword // OPTIONAL
);
#endif
#endif // _WEBHELP_INCLUDED_