mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
46 lines
813 B
C++
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;
|
|
}
|