mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
d3drm: Simplify declaration of VTable members (spotted by Dmitry Timoshkov).
This commit is contained in:
parent
d21c131fb5
commit
3ad04c18c0
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user