Module: wine Branch: refs/heads/master Commit: 6ede65596a7700ec4aa51c055955f4c625bf8c72 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=6ede65596a7700ec4aa51c05...
Author: Mike McCormack mike@codeweavers.com Date: Tue Aug 1 01:00:36 2006 +0900
ole32: Add function parameters to FIXME messages.
---
dlls/ole32/storage32.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index 5119571..acc41c4 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -1618,7 +1618,9 @@ static HRESULT WINAPI StorageImpl_MoveEl const OLECHAR *pwcsNewName,/* [string][in] */ DWORD grfFlags) /* [in] */ { - FIXME("not implemented!\n"); + FIXME("(%p %s %p %s %lu): stub\n", iface, + debugstr_w(pwcsName), pstgDest, + debugstr_w(pwcsNewName), grfFlags); return E_NOTIMPL; }
@@ -1636,7 +1638,7 @@ static HRESULT WINAPI StorageImpl_Commit IStorage* iface, DWORD grfCommitFlags)/* [in] */ { - FIXME("(%ld): stub!\n", grfCommitFlags); + FIXME("(%p %ld): stub\n", iface, grfCommitFlags); return S_OK; }
@@ -1648,7 +1650,7 @@ static HRESULT WINAPI StorageImpl_Commit static HRESULT WINAPI StorageImpl_Revert( IStorage* iface) { - FIXME("not implemented!\n"); + FIXME("(%p): stub\n", iface); return E_NOTIMPL; }