I'm trying to see which OLE calls a program makes under WINE when using oleaut32 natively. Obviously this native DLL doesn't have any debugging information.
wine --debugmsg +ole app.exe doesn't seem to show the calls made to oleaut32. Is there are way I can get this information?
"E" == E Lea ed@centralmanclc.com writes:
E> I'm trying to see which OLE calls a program makes under WINE when E> using oleaut32 natively. Obviously this native DLL doesn't have any E> debugging information.
E> wine --debugmsg +ole app.exe doesn't seem to show the calls made to E> oleaut32. Is there are way I can get this information?
The only debugging avaliable for native DLLs is --debugmsg +snoop.
If the call to the native function doesn't go through the normal import mechanisme ( what I expect for the OLE functionality), this probably won't help.
Bye