46e3f66f91
This source file does not seem to include any of the usual LibreOffice headers, so we should not use SAL_N_ELEMENTS in it.
30 lines
776 B
C++
30 lines
776 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
// SOComWindowPeer.cpp : Implementation of CHelpApp and DLL registration.
|
|
|
|
#include "stdafx2.h"
|
|
#include "so_activex.h"
|
|
#include "SOComWindowPeer.h"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
|
|
STDMETHODIMP SOComWindowPeer::InterfaceSupportsErrorInfo(REFIID riid)
|
|
{
|
|
static const IID* arr[] =
|
|
{
|
|
&IID_ISOComWindowPeer,
|
|
};
|
|
|
|
for (int i=0;i<sizeof(arr)/sizeof(arr[0]);i++)
|
|
{
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1300)
|
|
if (InlineIsEqualGUID(*arr[i],riid))
|
|
#else
|
|
if (::ATL::InlineIsEqualGUID(*arr[i],riid))
|
|
#endif
|
|
return S_OK;
|
|
}
|
|
return S_FALSE;
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|