summaryrefslogtreecommitdiff
path: root/extensions/source/activex/main/com_uno_helper.h
blob: 94573c645d16d72c9d73c717e08975270a42d601 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
#include "stdafx2.h"

HRESULT ExecuteFunc( IDispatch* idispUnoObject, 
                     OLECHAR* sFuncName, 
                     CComVariant* params, 
                     unsigned int count, 
                     CComVariant* pResult );

HRESULT GetIDispByFunc( IDispatch* idispUnoObject, 
                          OLECHAR* sFuncName, 
                          CComVariant* params, 
                          unsigned int count, 
                          CComPtr<IDispatch>& pdispResult );

HRESULT PutPropertiesToIDisp( IDispatch* pdispObject, 
                              OLECHAR** sMemberNames, 
                              CComVariant* pVariant, 
                              unsigned int count );

HRESULT GetPropertiesFromIDisp( IDispatch* pdispObject, 
                                OLECHAR** sMemberNames, 
                                CComVariant* pVariant, 
                                unsigned int count );

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */