PATCH: dmloader new compiler

Marcus Meissner marcus at jet.franken.de
Mon Jul 12 12:14:47 CDT 2004


Hi,

Ciao, Marcus

Changelog:
	Fixed (LPDIRECTMUSICLOADER8) cast.

Index: dlls/dmloader/loaderstream.c
===================================================================
RCS file: /home/wine/wine/dlls/dmloader/loaderstream.c,v
retrieving revision 1.9
diff -u -r1.9 loaderstream.c
--- dlls/dmloader/loaderstream.c	13 May 2004 00:00:22 -0000	1.9
+++ dlls/dmloader/loaderstream.c	12 Jul 2004 17:07:26 -0000
@@ -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;
-- 



More information about the wine-patches mailing list