mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
implement NtGdiEngLockSurface (not tested)
svn path=/trunk/; revision=28554
This commit is contained in:
parent
9bb0ac0bd6
commit
2144841165
2 changed files with 13 additions and 1 deletions
|
@ -558,6 +558,16 @@ EngLockSurface(IN HSURF Surface)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
VOID STDCALL
|
||||
NtGdiEngUnLockSurface(IN SURFOBJ *Surface)
|
||||
{
|
||||
EngUnlockSurface(Surface);
|
||||
}
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
|
@ -567,4 +577,6 @@ EngUnlockSurface(IN SURFOBJ *Surface)
|
|||
if (Surface != NULL)
|
||||
GDIOBJ_UnlockObjByPtr(GdiHandleTable, Surface);
|
||||
}
|
||||
|
||||
|
||||
/* EOF */
|
||||
|
|
|
@ -615,7 +615,7 @@ NtGdiEngCopyBits 6
|
|||
NtGdiEngDeletePalette 1
|
||||
NtGdiEngDeleteSurface 1
|
||||
NtGdiEngEraseSurface 3
|
||||
# NtGdiEngUnlockSurface 1
|
||||
NtGdiEngUnlockSurface 1
|
||||
NtGdiEngLockSurface 1
|
||||
NtGdiEngBitBlt 11
|
||||
NtGdiEngStretchBlt 11
|
||||
|
|
Loading…
Reference in a new issue