[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Question about returning values of COM method call by using luacom
- From: "Jei-Wen Teng" <jeiwen.teng@...>
- Date: Wed, 17 Dec 2008 14:58:03 +0800
I am trying to call a COM method from Lua by using LuaCOM.The signature is as follow:
HRESULT GetAPEncodedData(
VARIANT* APName,
VARIANT* Realm,
VARIANT* EncodedData,
[out, retval] long* pVal);
Directional attribute [in], [out] is not specified.
EncodedData is the parameter that this method will store its result in.
My question is:
1. Will LuaCOM return all the values of VARIANT* type parameters?
2. If not, is there any way in LuaCOM to get the result value of EncodedData?
Thanks in advance.
-- Jei-Wen Teng