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.
 
 
 
 
 
 

59 lines
1.3 KiB

//---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1995
//
// File: cnamcf.cxx
//
// Contents: Windows NT 3.5 Namespace Object Class Factory Code
//
// CNDSNamespaceCF::CreateInstance
//
// History: 01-30-95 krishnag Created.
//
//----------------------------------------------------------------------------
#include "nds.hxx"
#pragma hdrstop
//+---------------------------------------------------------------------------
//
// Function: CNDSNamespaceCF::CreateInstance
//
// Synopsis:
//
// Arguments: [pUnkOuter]
// [iid]
// [ppv]
//
// Returns: HRESULT
//
// Modifies:
//
// History: 01-30-95 krishnag Created.
//----------------------------------------------------------------------------
STDMETHODIMP
CNDSNamespaceCF::CreateInstance(IUnknown * pUnkOuter, REFIID iid, LPVOID * ppv)
{
HRESULT hr = S_OK;
CCredentials Credentials;
if (pUnkOuter)
RRETURN(E_FAIL);
hr = CNDSNamespace::CreateNamespace(
L"ADs:",
L"NDS:",
Credentials,
ADS_OBJECT_BOUND,
iid,
ppv
);
RRETURN(hr);
}