d3drm: Avoid LPRECT.
This commit is contained in:
parent
39991e759a
commit
4b772c2cf2
|
@ -565,11 +565,10 @@ static HRESULT WINAPI IDirect3DRMTexture3Impl_InitFromResource(IDirect3DRMTextur
|
|||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI IDirect3DRMTexture3Impl_Changed(IDirect3DRMTexture3* iface, DWORD flags, DWORD nb_rects, LPRECT rects)
|
||||
static HRESULT WINAPI IDirect3DRMTexture3Impl_Changed(IDirect3DRMTexture3 *iface,
|
||||
DWORD flags, DWORD rect_count, RECT *rects)
|
||||
{
|
||||
IDirect3DRMTextureImpl *This = impl_from_IDirect3DRMTexture3(iface);
|
||||
|
||||
FIXME("(%p/%p)->(%x, %u, %p): stub\n", iface, This, flags, nb_rects, rects);
|
||||
FIXME("iface %p, flags %#x, rect_count %u, rects %p stub!\n", iface, flags, rect_count, rects);
|
||||
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
|
|
@ -3442,7 +3442,7 @@ DECLARE_INTERFACE_(IDirect3DRMTexture3, IDirect3DRMVisual)
|
|||
STDMETHOD(InitFromFile)(THIS_ const char *filename) PURE;
|
||||
STDMETHOD(InitFromSurface)(THIS_ IDirectDrawSurface *surface) PURE;
|
||||
STDMETHOD(InitFromResource)(THIS_ HRSRC) PURE;
|
||||
STDMETHOD(Changed)(THIS_ DWORD dwFlags, DWORD dwcRects, LPRECT pRects) PURE;
|
||||
STDMETHOD(Changed)(THIS_ DWORD flags, DWORD rect_count, RECT *rects) PURE;
|
||||
STDMETHOD(SetColors)(THIS_ DWORD) PURE;
|
||||
STDMETHOD(SetShades)(THIS_ DWORD) PURE;
|
||||
STDMETHOD(SetDecalSize)(THIS_ D3DVALUE width, D3DVALUE height) PURE;
|
||||
|
|
Loading…
Reference in New Issue