mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
implement GdiEntry6 (party untested)
svn path=/trunk/; revision=16840
This commit is contained in:
parent
a5fb10e380
commit
642c3770b3
2 changed files with 12 additions and 13 deletions
|
@ -131,4 +131,16 @@ DdDeleteSurfaceObject(LPDDRAWI_DDRAWSURFACE_LCL pSurfaceLocal)
|
|||
return NtGdiDdDeleteSurfaceObject((HANDLE)pSurfaceLocal->hDDSurface);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*
|
||||
* GDIEntry 6
|
||||
*/
|
||||
BOOL
|
||||
STDCALL
|
||||
DdResetVisrgn(LPDDRAWI_DDRAWSURFACE_LCL pSurfaceLocal,
|
||||
HWND hWnd)
|
||||
{
|
||||
return NtGdiDdResetVisrgn((HANDLE) pSurfaceLocal->hDDSurface, hWnd);
|
||||
}
|
||||
|
||||
|
|
|
@ -3902,19 +3902,6 @@ BOOL bPrimarySurface
|
|||
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
BOOL STDCALL DdResetVisrgn(
|
||||
LPDDRAWI_DDRAWSURFACE_LCL pSurfaceLocal,
|
||||
HWND hWnd
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue