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.
26 lines
723 B
26 lines
723 B
/*++
|
|
|
|
DELEGTOOLS.H
|
|
|
|
Copyright (C) 1998 Microsoft Corporation, all rights reserved.
|
|
|
|
DESCRIPTION: tools for delegation. These are required to make
|
|
the delegation library work, and should make for
|
|
useful tools, so I separated the header in case
|
|
others wanted to use them.
|
|
|
|
Created, Dec 22, 1998 by DavidCHR.
|
|
|
|
--*/
|
|
|
|
BOOL
|
|
ConnectAndBindToDefaultDsa( IN OPTIONAL LPWSTR BindTarget,
|
|
OUT PLDAP *ppLdap );
|
|
|
|
|
|
BOOL
|
|
LdapSearchForUniqueDnA( IN PLDAP pLdap,
|
|
IN LPSTR SearchTerm,
|
|
IN LPSTR *rzRequestedAttributes,
|
|
OUT OPTIONAL LPSTR *pDnOfObject,
|
|
OUT OPTIONAL PLDAPMessage *ppMessage );
|