ddraw: Avoid LPDDOVERLAYFX.

This commit is contained in:
Henri Verbeet 2012-12-09 21:22:05 +01:00 committed by Alexandre Julliard
parent b00ac5072a
commit 5cea0f122c
2 changed files with 3 additions and 3 deletions

View File

@ -794,8 +794,8 @@ static HRESULT WINAPI IDirectDrawSurface4Impl_UpdateOverlay(IDirectDrawSurface4
}
static HRESULT WINAPI IDirectDrawSurface3Impl_UpdateOverlay(IDirectDrawSurface3 *iface,
LPRECT SrcRect, IDirectDrawSurface3 *DstSurface, LPRECT DstRect, DWORD Flags,
LPDDOVERLAYFX FX)
RECT *SrcRect, IDirectDrawSurface3 *DstSurface, RECT *DstRect, DWORD Flags,
DDOVERLAYFX *FX)
{
IDirectDrawSurfaceImpl *This = impl_from_IDirectDrawSurface3(iface);
IDirectDrawSurfaceImpl *Dst = unsafe_impl_from_IDirectDrawSurface3(DstSurface);

View File

@ -936,7 +936,7 @@ typedef struct _DDRAWI_DDRAWSURFACE_MORE {
DWORD dwOverlayFlags;
VOID *rgjunc;
LPDDRAWI_DDVIDEOPORT_LCL lpVideoPort;
LPDDOVERLAYFX lpddOverlayFX;
DDOVERLAYFX *lpddOverlayFX;
DDSCAPSEX ddsCapsEx;
DWORD dwTextureStage;
LPVOID lpDDRAWReserved;