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.
29 lines
525 B
29 lines
525 B
/*++
|
|
|
|
SECPRINC.H
|
|
|
|
convenience routines for doing a few useful things
|
|
|
|
Copyright (C) 1998 Microsoft Corporation, all rights reserved.
|
|
|
|
Created, Jun 18, 1998 by DavidCHR.
|
|
|
|
--*/
|
|
|
|
BOOL
|
|
ConnectToDsa( OUT PLDAP *ppLdap,
|
|
OUT LPSTR *BaseDN );
|
|
|
|
BOOL
|
|
SetStringProperty( IN PLDAP pLdap,
|
|
IN LPSTR Dn,
|
|
IN LPSTR PropertyName,
|
|
IN LPSTR Property,
|
|
IN ULONG Operation );
|
|
|
|
BOOL
|
|
FindUser( IN PLDAP pLdap,
|
|
IN LPSTR UserName,
|
|
OUT PULONG puacFlags,
|
|
OUT LPSTR *pDn );
|
|
|