mirror of https://github.com/tongzx/nt5src
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.
51 lines
1.1 KiB
51 lines
1.1 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1996.
|
|
//
|
|
// File: ldap2var.cxx
|
|
//
|
|
// Contents: LDAP Object to Variant Copy Routines
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 25-Apr-96 yihsins Created.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
typedef VARIANT *PVARIANT, *LPVARIANT;
|
|
|
|
|
|
HRESULT
|
|
LdapTypeToVarTypeCopy(
|
|
LPWSTR pszServerName,
|
|
CCredentials& Credentials,
|
|
PLDAPOBJECT pLdapSrcObject,
|
|
DWORD dwSyntaxId,
|
|
PVARIANT lpVarDestObject
|
|
);
|
|
|
|
HRESULT
|
|
LdapTypeToVarTypeCopyConstruct(
|
|
LPWSTR pszServerName,
|
|
CCredentials& Credentials,
|
|
LDAPOBJECTARRAY ldapObjectArray,
|
|
DWORD dwSyntaxId,
|
|
PVARIANT pVarDestObjects
|
|
);
|
|
|
|
//
|
|
// These routines are used by ldap2umi also.
|
|
//
|
|
HRESULT
|
|
LdapTypeToVarTypeDNWithBinary(
|
|
PLDAPOBJECT pLdapSrcObject,
|
|
PVARIANT pVarDestObject
|
|
);
|
|
|
|
HRESULT
|
|
LdapTypeToVarTypeDNWithString(
|
|
PLDAPOBJECT pLdapSrcObject,
|
|
PVARIANT pVarDestObject
|
|
);
|
|
|