Module: wine Branch: master Commit: cfe49e3697b95c1cc198d2477ce67f02a103c5b1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cfe49e3697b95c1cc198d2477c...
Author: Marcus Meissner marcus@jet.franken.de Date: Sun Dec 4 23:52:55 2011 +0100
ole32: Output more information in OleCreateStaticFromData.
---
dlls/ole32/ole2stubs.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/ole32/ole2stubs.c b/dlls/ole32/ole2stubs.c index b029a86..16ac8d1 100644 --- a/dlls/ole32/ole2stubs.c +++ b/dlls/ole32/ole2stubs.c @@ -90,7 +90,8 @@ HRESULT WINAPI OleCreateStaticFromData(LPDATAOBJECT pSrcDataObj, REFIID iid, DWORD renderopt, LPFORMATETC pFormatEtc, LPOLECLIENTSITE pClientSite, LPSTORAGE pStg, LPVOID* ppvObj) { - FIXME("(not shown), stub!\n"); + FIXME("(srcdata=%p, refiid=%s, renderopt=%x, formatetc=%p, client=%p, storage=%p, ppv=%p), stub!\n", + pSrcDataObj,debugstr_guid(iid),renderopt,pFormatEtc,pClientSite,pStg,ppvObj ); return E_NOTIMPL; }