shell32: Improve some FIXMEs.

This commit is contained in:
Christian Costa 2010-01-26 08:16:37 +01:00 committed by Alexandre Julliard
parent 223603cc1c
commit 5a647e87c1

View File

@ -499,7 +499,7 @@ static HRESULT WINAPI IPersistFile_fnSaveCompleted(IPersistFile* iface, LPCOLEST
static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile* iface, LPOLESTR *ppszFileName) static HRESULT WINAPI IPersistFile_fnGetCurFile(IPersistFile* iface, LPOLESTR *ppszFileName)
{ {
IShellLinkImpl *This = impl_from_IPersistFile(iface); IShellLinkImpl *This = impl_from_IPersistFile(iface);
FIXME("(%p)\n",This); FIXME("(%p)->(%p): stub\n", This, ppszFileName);
return NOERROR; return NOERROR;
} }
@ -2313,7 +2313,7 @@ ShellLink_DataList_Release( IShellLinkDataList* iface )
static HRESULT WINAPI static HRESULT WINAPI
ShellLink_AddDataBlock( IShellLinkDataList* iface, void* pDataBlock ) ShellLink_AddDataBlock( IShellLinkDataList* iface, void* pDataBlock )
{ {
FIXME("\n"); FIXME("(%p)->(%p): stub\n", iface, pDataBlock);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -2351,7 +2351,7 @@ ShellLink_CopyDataBlock( IShellLinkDataList* iface, DWORD dwSig, void** ppDataBl
static HRESULT WINAPI static HRESULT WINAPI
ShellLink_RemoveDataBlock( IShellLinkDataList* iface, DWORD dwSig ) ShellLink_RemoveDataBlock( IShellLinkDataList* iface, DWORD dwSig )
{ {
FIXME("\n"); FIXME("(%p)->(%u): stub\n", iface, dwSig);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -2361,7 +2361,7 @@ ShellLink_GetFlags( IShellLinkDataList* iface, DWORD* pdwFlags )
IShellLinkImpl *This = impl_from_IShellLinkDataList(iface); IShellLinkImpl *This = impl_from_IShellLinkDataList(iface);
DWORD flags = 0; DWORD flags = 0;
FIXME("%p %p\n", This, pdwFlags ); FIXME("(%p)->(%p): partially implemented\n", This, pdwFlags);
/* FIXME: add more */ /* FIXME: add more */
if (This->sArgs) if (This->sArgs)
@ -2383,7 +2383,7 @@ ShellLink_GetFlags( IShellLinkDataList* iface, DWORD* pdwFlags )
static HRESULT WINAPI static HRESULT WINAPI
ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags ) ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags )
{ {
FIXME("\n"); FIXME("(%p)->(%u): stub\n", iface, dwFlags);
return E_NOTIMPL; return E_NOTIMPL;
} }
@ -2639,7 +2639,7 @@ ShellLink_GetCommandString( IContextMenu* iface, UINT_PTR idCmd, UINT uType,
{ {
IShellLinkImpl *This = impl_from_IContextMenu(iface); IShellLinkImpl *This = impl_from_IContextMenu(iface);
FIXME("%p %lu %u %p %p %u\n", This, FIXME("(%p)->(%lu %u %p %p %u): stub\n", This,
idCmd, uType, pwReserved, pszName, cchMax ); idCmd, uType, pwReserved, pszName, cchMax );
return E_NOTIMPL; return E_NOTIMPL;