Files
core/ASCImageStudio3/ASCImageConverter/ASCXMLImageSource2.cpp
Elen.Subbotina 70e623d70b восстановление
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62634 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:05:02 +03:00

46 lines
813 B
C++

// ASCXMLImageSource2.cpp : Implementation of CASCXMLImageSource2
#include "stdafx.h"
#include "ASCXMLImageSource2.h"
// CAVSXMLImageSource2
STDMETHODIMP CAVSXMLImageSource2::Add(BSTR sXML, LONG* lId)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAVSXMLImageSource2::GetImage(LONG lId, IUnknown** ppImage)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAVSXMLImageSource2::Remove(LONG lId)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAVSXMLImageSource2::Update(LONG lId, BSTR sXML)
{
// TODO: Add your implementation code here
return S_OK;
}
STDMETHODIMP CAVSXMLImageSource2::GetInfo(BSTR* pInfo)
{
// TODO: Add your implementation code here
return S_OK;
}