[PATCH 1/2] d3drm: Simplify declaration of VTable members (spotted by Dmitry Timoshkov)

Christian Costa titan.costa at wanadoo.fr
Tue Jan 12 02:54:30 CST 2010


---

 dlls/d3drm/d3drm.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
-------------- next part --------------
diff --git a/dlls/d3drm/d3drm.c b/dlls/d3drm/d3drm.c
index a0d7d3f..4eed18b 100644
--- a/dlls/d3drm/d3drm.c
+++ b/dlls/d3drm/d3drm.c
@@ -34,7 +34,7 @@
 WINE_DEFAULT_DEBUG_CHANNEL(d3drm);
 
 typedef struct {
-    IDirect3DRM lpVtbl;
+    const IDirect3DRMVtbl *lpVtbl;
     LONG ref;
 } IDirect3DRMImpl;
 
@@ -53,7 +53,7 @@ HRESULT Direct3DRM_create(LPDIRECT3DRM* ppDirect3DRM)
         return E_OUTOFMEMORY;
     }
 
-    object->lpVtbl.lpVtbl = &Direct3DRM_Vtbl;
+    object->lpVtbl = &Direct3DRM_Vtbl;
     object->ref = 1;
 
     *ppDirect3DRM = (IDirect3DRM*)object;


More information about the wine-patches mailing list