24 lines
928 B
C
24 lines
928 B
C
#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 );
|
|
|