Dumpcpp and .NET dll
Qt Creator and other tools
2
Posts
1
Posters
1.3k
Views
1
Watching
-
Hello,
I need to use a .NET dll in Qt5. I created the .tlb file using regasm and then fed dumpcpp with it.
It successfully created the wrapped but the compilation fails due to the following:@
NSHelper(IDisposable *iface)
: QAxObject()
{
initializeFrom(iface);
delete iface;
}error: expected ')' before '*' token
NSHelper(IDisposable *iface)
^
@How to handle that?
IDisposable is contained in mscorlib.dll...
I need to dumpcpp mscorlib too?