implement NtGdiEngLockSurface (not tested)

svn path=/trunk/; revision=28554
This commit is contained in:
Magnus Olsen 2007-08-25 17:34:03 +00:00
parent 9bb0ac0bd6
commit 2144841165
2 changed files with 13 additions and 1 deletions

View file

@ -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 */

View file

@ -615,7 +615,7 @@ NtGdiEngCopyBits 6
NtGdiEngDeletePalette 1
NtGdiEngDeleteSurface 1
NtGdiEngEraseSurface 3
# NtGdiEngUnlockSurface 1
NtGdiEngUnlockSurface 1
NtGdiEngLockSurface 1
NtGdiEngBitBlt 11
NtGdiEngStretchBlt 11