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.
|
|
//+---------------------------------------------------------------------------
//
// 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 );
|