dmscript: IPersistStream_GetClassID() is not implemented for DMScript.

This commit is contained in:
Michael Stefaniuc 2014-05-26 23:12:40 +02:00 committed by Alexandre Julliard
parent 834bae9935
commit 444fff4343
1 changed files with 3 additions and 4 deletions

View File

@ -424,10 +424,9 @@ static ULONG WINAPI IDirectMusicScriptImpl_IPersistStream_Release (LPPERSISTSTRE
}
static HRESULT WINAPI IDirectMusicScriptImpl_IPersistStream_GetClassID (LPPERSISTSTREAM iface, CLSID* pClassID) {
ICOM_THIS_MULTI(IDirectMusicScriptImpl, PersistStreamVtbl, iface);
TRACE("(%p, %p)\n", This, pClassID);
*pClassID = CLSID_DirectMusicScript;
return S_OK;
TRACE("(%p, %p) method not implemented\n", iface, pClassID);
return E_NOTIMPL;
}
static HRESULT WINAPI IDirectMusicScriptImpl_IPersistStream_IsDirty (LPPERSISTSTREAM iface) {