I'm trying to install the jvcl from source, but I'm getting an error in line #1267 of unit JvInterpreter;
uses
TypInfo,
{$IFDEF JvInterpreter_OLEAUTO}
OleConst, ActiveX, ComObj,
So I removed ComObj
from the uses and waited for the error further down the line:
There's an error concerning EOLEError
, which is part of OleAuto I added that and hoped for the best, but....
I get an error on this line #1799:
DispatchInvoke(IDispatch(Dispatch), CallDesc, PDispIDList(@DispIDs[0]), ParamTypes, Result);
So the question is: what happened to ComObj
and what unit do I need for DispatchInvoke
in XE2?