Hi,
I would like to import Interfaces from an COM/ATL project.
I already tried the IDL-import from the MDG/Corba plugin but it fails, when the first "[" occurs.
My interfaces look like this:
[
object,
uuid(713C3AF0-6F71-4CF1-9079-84AA8C986B71),
dual,
nonextensible,
helpstring("IGenericBase-Schnittstelle"),
pointer_default(unique)
]
interface IGenericBase : IDispatch{
[propget, id(1), helpstring("property ID")] HRESULT ID([out, retval] BSTR* pVal);
[propget, id(2), helpstring("property Name")] HRESULT Name([out, retval] BSTR* pVal);
[propput, id(2), helpstring("property Name")] HRESULT Name([in] BSTR newVal);
[propget, id(3), helpstring("property Updated")] HRESULT Updated([out, retval] SHORT* pVal);
[propput, id(3), helpstring("property Updated")] HRESULT Updated([in] SHORT newVal);
};
Has anyone imported successfully the interfaces from an COM/ATL project into EA?
Best regards
Stefan Rauch