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.
91 lines
3.4 KiB
91 lines
3.4 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997 - 1999
|
|
//
|
|
// File: pcrack.h
|
|
//
|
|
// requires iads.h (IADsPathname) and atlbase.h (CComPtr)
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
// pcrack.h : include file for CPathCracker
|
|
|
|
#ifndef __PCRACK_H__
|
|
#define __PCRACK_H__
|
|
|
|
class CPathCracker
|
|
{
|
|
public:
|
|
CPathCracker()
|
|
{
|
|
m_hrCreate = Init();
|
|
}
|
|
private:
|
|
|
|
HRESULT Init()
|
|
{
|
|
HRESULT hr = ::CoCreateInstance(CLSID_Pathname, NULL, CLSCTX_INPROC_SERVER,
|
|
IID_IADsPathname, (PVOID *)&(m_spIADsPathname));
|
|
return hr;
|
|
}
|
|
|
|
public:
|
|
|
|
// IADsPathname methods
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE Set(
|
|
/* [in] */ const BSTR bstrADsPath,
|
|
/* [in] */ long lnSetType)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->Set(bstrADsPath, lnSetType); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE SetDisplayType(
|
|
/* [in] */ long lnDisplayType)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->SetDisplayType(lnDisplayType); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE Retrieve(
|
|
/* [in] */ long lnFormatType,
|
|
/* [retval][out] */ BSTR __RPC_FAR *pbstrADsPath)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->Retrieve(lnFormatType, pbstrADsPath); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetNumElements(
|
|
/* [retval][out] */ long __RPC_FAR *plnNumPathElements)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->GetNumElements(plnNumPathElements); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetElement(
|
|
/* [in] */ long lnElementIndex,
|
|
/* [retval][out] */ BSTR __RPC_FAR *pbstrElement)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->GetElement(lnElementIndex, pbstrElement); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE AddLeafElement(
|
|
/* [in] */ BSTR bstrLeafElement)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->AddLeafElement(bstrLeafElement); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE RemoveLeafElement( void)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->RemoveLeafElement(); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE CopyPath(
|
|
/* [retval][out] */ IDispatch __RPC_FAR *__RPC_FAR *ppAdsPath)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->CopyPath(ppAdsPath); }
|
|
|
|
virtual /* [id] */ HRESULT STDMETHODCALLTYPE GetEscapedElement(
|
|
/* [in] */ long lnReserved,
|
|
/* [in] */ const BSTR bstrInStr,
|
|
/* [retval][out] */ BSTR __RPC_FAR *pbstrOutStr)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->GetEscapedElement(lnReserved, bstrInStr, pbstrOutStr); }
|
|
|
|
virtual /* [id][propget] */ HRESULT STDMETHODCALLTYPE get_EscapedMode(
|
|
/* [retval][out] */ long __RPC_FAR *retval)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->get_EscapedMode(retval); }
|
|
|
|
virtual /* [id][propput] */ HRESULT STDMETHODCALLTYPE put_EscapedMode(
|
|
/* [in] */ long lnEscapedMode)
|
|
{ return (m_spIADsPathname == NULL) ? m_hrCreate : m_spIADsPathname->put_EscapedMode(lnEscapedMode); }
|
|
|
|
|
|
private:
|
|
CComPtr<IADsPathname> m_spIADsPathname;
|
|
HRESULT m_hrCreate;
|
|
};
|
|
|
|
#endif _PCRACK_H_
|