Leaked source code of windows server 2003
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 - 2000.
//
// File: umi2ldap.hxx
//
// Contents: Header for file containing conversion routines. These routines
// convert the given UMI values from the user to ldap values.
//
// History: 02-17-00 AjayR Created.
//
//----------------------------------------------------------------------------
#ifndef __UMI2LDAP_H__
#define __UMI2LDAP_H__
//
// Need the bool value as the caller should tell us if this is
// of type UTCTime or GeneralizedTime.
//
HRESULT UmiTypeToLdapTypeCopy( UMI_PROPERTY_VALUES umiPropValues, ULONG ulFlags, LDAPOBJECTARRAY *pLdapDestObjects, DWORD &dwLdapSyntaxId, CCredentials *pCreds, LPWSTR pszServerName, BOOL fUtcTime = FALSE ); HRESULT UmiTypeToLdapTypeEnum( ULONG ulUmiType, PDWORD pdwSyntax ); #endif // __UMI2LDAP_H__
|