33 lines
742 B
C++
33 lines
742 B
C++
// XMLElementCollection.cpp : Implementation of CXMLElementCollection
|
|
#include "stdafx.h"
|
|
#include "Activexml.h"
|
|
#include "XMLElementCollection.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CXMLElementCollection
|
|
|
|
HRESULT STDMETHODCALLTYPE put_length(/* [in] */ long v)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE get_length(/* [out][retval] */ long __RPC_FAR *p)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE get__newEnum(/* [out][retval] */ IUnknown __RPC_FAR *__RPC_FAR *ppUnk)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE item(/* [in][optional] */ VARIANT var1, /* [in][optional] */ VARIANT var2, /* [out][retval] */ IDispatch __RPC_FAR *__RPC_FAR *ppDisp)
|
|
{
|
|
return E_NOTIMPL;
|
|
}
|
|
|
|
|