I try to create interface_description for ObjCreateInterface function
Here the part of interface:
[id(0x00000002), propput, helpstring("Default")]
HRESULT Default([in] BSTR TokenId);
[id(0x00000002), propget, helpstring("Default")]
HRESULT Default([out, retval] BSTR* TokenId);
you can see that there are two the same method Default.
first is [in], second is - [out].
how to write a description of this?
Default hresult(bstr;);Default hresult(bstr*); - is it correct?
or so?
Default hresult(bstr;bstr*);
please help.