Hi, thankyou for answer.
I've tried how you say with error: error: '__mingw_uuidof' was not declared in this scope
QVariant var
= JswAttrList.
GetItem(Some_attribute
);
HRESULT hr = AttrList.queryInterface(__uuidof(JSWSCAPILib::IJswAttrList),(void **)&var);
QVariant var = JswAttrList.GetItem(Some_attribute);
HRESULT hr = AttrList.queryInterface(__uuidof(JSWSCAPILib::IJswAttrList),(void **)&var);
To copy to clipboard, switch view to plain text mode
__uuidof is a MVC++ extensión. I have to say that I am using mingw as compiler. Them I've tried to get UUID Class from Visual C++ with this simple test:
String^ s = __uuidof(JSWSCAPILib::IJswAttrList);
String^ s = __uuidof(JSWSCAPILib::IJswAttrList);
To copy to clipboard, switch view to plain text mode
with this compiler error: error C2787: 'SCAPILib::IAttrList' : No GUIDs have been associated with this object
Bookmarks