On Fri, Jun 10, 2005 at 09:35:31AM +0200, René Rebe wrote:
Hi all,
wine d:\setup.exe (from Naturally Speaking 7):
err:ole:TMStubImpl_Invoke Does not support iface {be6115a1-7de5-48dc-ad2a-25060e00fce2}, returning 80004002
These messages are harmless and should be turned into WARN() at one point.
err:ole:CoUnmarshalInterface IMarshal::UnmarshalInterface failed, 0x800401fd err:ole:_unmarshal_interface Unmarshalling interface {3d8b6332-d8b1-11d2-80c5-00104b1f6cea} failed with 800401fd err:ole:deserialize_param failed to stuballoc in TKIND_RECORD.
Is this also suppost to work with recent Wine versions and wineprefixcreate run?
I already removed any wine file and rebuild the latest snapshot from source, run wineprefixcreate and those still show up.
However with my previous IE+mplayer2+acad huge wine-c the installer runs. Apparently it does not appear to be a config difference - so most probably some installed dll in this other huge wine-c?
Apply the hack below and it will work.
Ciao, Marcus
Index: dlls/ole32/stubmanager.c =================================================================== RCS file: /home/wine/wine/dlls/ole32/stubmanager.c,v retrieving revision 1.19 diff -u -r1.19 stubmanager.c --- dlls/ole32/stubmanager.c 17 Mar 2005 10:26:20 -0000 1.19 +++ dlls/ole32/stubmanager.c 10 Jun 2005 07:45:57 -0000 @@ -477,7 +477,7 @@ default: WARN("object OID %s already unmarshaled\n", wine_dbgstr_longlong(m->oid)); - ret = FALSE; + ret = TRUE; break; }