Fixed (LPDIRECTMUSICLOADER8) cast.

This commit is contained in:
Marcus Meissner 2004-07-12 19:54:20 +00:00 committed by Alexandre Julliard
parent 225148b973
commit 66d3261e65
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ HRESULT WINAPI IDirectMusicLoaderFileStream_Attach (LPSTREAM iface, LPCWSTR wzFi
return DMUS_E_LOADER_FAILEDOPEN;
}
/* create IDirectMusicGetLoader */
(LPDIRECTMUSICLOADER) This->pLoader = pLoader;
This->pLoader = (LPDIRECTMUSICLOADER8)pLoader;
strncpyW (This->wzFileName, wzFile, MAX_PATH);
TRACE(": succeeded\n");
return S_OK;