Commit 1ef0d39c authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Made some FIXME()s print the respective strings passed.

Changed StgSetTimes() to correct type.
parent d2838353
......@@ -161,7 +161,7 @@ debug_channels (accel ole relay storage)
147 stdcall StgIsStorageILockBytes(ptr) StgIsStorageILockBytes
148 stdcall StgOpenStorage(wstr ptr long ptr long ptr) StgOpenStorage
149 stdcall StgOpenStorageOnILockBytes(ptr ptr long long long ptr) StgOpenStorageOnILockBytes
150 stdcall StgSetTimes(ptr ptr ptr ptr ) StgSetTimes
150 stdcall StgSetTimes(wstr ptr ptr ptr ) StgSetTimes
151 stdcall StringFromCLSID(ptr ptr) StringFromCLSID
152 stdcall StringFromGUID2(ptr ptr long) StringFromGUID2
153 stdcall StringFromIID(ptr ptr) StringFromCLSID
......
......@@ -2075,8 +2075,8 @@ HRESULT WINAPI StorageImpl_SetElementTimes(
const FILETIME *patime, /* [in] */
const FILETIME *pmtime) /* [in] */
{
FIXME("not implemented!\n");
return E_NOTIMPL;
FIXME("(%s,...), stub!\n",debugstr_w(pwcsName));
return S_OK;
}
/******************************************************************************
......@@ -5625,11 +5625,10 @@ HRESULT WINAPI StgOpenStorageOnILockBytes(
*
*
*/
HRESULT WINAPI StgSetTimes(WCHAR * str, FILETIME * a, FILETIME * b, FILETIME *c )
HRESULT WINAPI StgSetTimes(OLECHAR *str, FILETIME *a, FILETIME *b, FILETIME *c )
{
FIXME("(%p, %p, %p, %p),stub!\n", str, a, b, c);
return FALSE;
FIXME("(%s, %p, %p, %p),stub!\n", debugstr_w(str), a, b, c);
return S_OK;
}
/******************************************************************************
......
......@@ -1197,8 +1197,9 @@ static HRESULT WINAPI OLEFontImpl_Invoke(
UINT* puArgErr)
{
_ICOM_THIS_From_IDispatch(IFont, iface);
FIXME("(%p):Stub\n", this);
FIXME("%p->(%ld,%s,%lx,%x):Stub\n", this,dispIdMember,debugstr_guid(riid),lcid,
wFlags
);
return E_NOTIMPL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment