Commit 668c959f authored by Zebediah Figura's avatar Zebediah Figura Committed by Alexandre Julliard

quartz: Return S_OK from IVMRSurfaceAllocator_PrepareSurface().

parent 442ef406
......@@ -235,8 +235,8 @@ static HRESULT WINAPI surface_allocator_FreeSurface(IVMRSurfaceAllocator *iface,
static HRESULT WINAPI surface_allocator_PrepareSurface(IVMRSurfaceAllocator *iface,
DWORD_PTR id, IDirectDrawSurface7 *surface, DWORD flags)
{
FIXME("iface %p, id %#Ix, surface %p, flags %#lx, stub!\n", iface, id, surface, flags);
return E_NOTIMPL;
TRACE("iface %p, id %#Ix, surface %p, flags %#lx.\n", iface, id, surface, flags);
return S_OK;
}
static HRESULT WINAPI surface_allocator_AdviseNotify(IVMRSurfaceAllocator *iface,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment