commit | 66d3261e658c1106b3a73d378f76a243e7b755e2 | [log] [tgz] |
---|---|---|
author | Marcus Meissner <marcus@jet.franken.de> | Mon Jul 12 19:54:20 2004 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Jul 12 19:54:20 2004 +0000 |
tree | 4c82dc0f334c13f734139f8bd7e44864b80ff40a | |
parent | 225148b97362e14b330c46c3ece91f0c1a31df7e [diff] |
Fixed (LPDIRECTMUSICLOADER8) cast.
diff --git a/dlls/dmloader/loaderstream.c b/dlls/dmloader/loaderstream.c index 8a4f70b..db4e96a 100644 --- a/dlls/dmloader/loaderstream.c +++ b/dlls/dmloader/loaderstream.c
@@ -66,7 +66,7 @@ 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;