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

Changed StgSetTimes() to correct type.
This commit is contained in:
Marcus Meissner 2001-07-14 00:47:52 +00:00 committed by Alexandre Julliard
parent d2838353ae
commit 1ef0d39c66
3 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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;
}
/******************************************************************************

View File

@ -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;
}