thanks for your reply
I wish it was that easy tho.
the c++ idl comipler that im using complains about forward declaration on structures. I've looked into and it seems like they only support forward declaration on interfaces.
Is that the case?
here's a snipplet of what i want to specify in my IDL:
typedef struct prop
{
wstring name
propCollection childProps;
} structA_TYPE;
typedef struct propCollection
{
sequence<prop> nProperties;
} propCollection_TYPE;
my C++ idl compiler is complaining that
propCollection...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.