mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
implement GdiEntry7 (some part is untested)
svn path=/trunk/; revision=16841
This commit is contained in:
parent
642c3770b3
commit
52754f93e1
2 changed files with 12 additions and 12 deletions
|
@ -144,3 +144,15 @@ DdResetVisrgn(LPDDRAWI_DDRAWSURFACE_LCL pSurfaceLocal,
|
|||
return NtGdiDdResetVisrgn((HANDLE) pSurfaceLocal->hDDSurface, hWnd);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*
|
||||
* GDIEntry 7
|
||||
*/
|
||||
HDC STDCALL DdGetDC(
|
||||
LPDDRAWI_DDRAWSURFACE_LCL pSurfaceLocal,
|
||||
LPPALETTEENTRY pColorTable
|
||||
)
|
||||
{
|
||||
return NtGdiDdGetDC(pColorTable, (HANDLE) pSurfaceLocal->hDDSurface);
|
||||
}
|
||||
|
|
|
@ -3902,18 +3902,6 @@ BOOL bPrimarySurface
|
|||
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
HDC STDCALL DdGetDC(
|
||||
LPDDRAWI_DDRAWSURFACE_LCL pSurfaceLocal,
|
||||
LPPALETTEENTRY pColorTable
|
||||
)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
|
|
Loading…
Reference in a new issue