oleaut32: Implement GetClassID for the OLE picture class.

This commit is contained in:
Robert Shearman 2006-07-14 00:02:36 +01:00 committed by Alexandre Julliard
parent 2cb3b22c26
commit ebea92739c
1 changed files with 3 additions and 3 deletions

View File

@ -921,9 +921,9 @@ static ULONG WINAPI OLEPictureImpl_IPersistStream_Release(
static HRESULT WINAPI OLEPictureImpl_GetClassID(
IPersistStream* iface,CLSID* pClassID)
{
OLEPictureImpl *This = impl_from_IPersistStream(iface);
FIXME("(%p),stub!\n",This);
return E_FAIL;
TRACE("(%p)\n", pClassID);
memcpy(pClassID, &CLSID_StdPicture, sizeof(*pClassID));
return S_OK;
}
/************************************************************************