mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
Connect UnrealizeObject and test debug prints. I assume arg count is one not two. If wrong please correct me.
svn path=/trunk/; revision=16532
This commit is contained in:
parent
6a38a2f69d
commit
c81ba78f7b
3 changed files with 8 additions and 3 deletions
|
@ -1116,8 +1116,7 @@ UnrealizeObject(
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
return NtGdiUnrealizeObject(a0);
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -609,6 +609,12 @@ NtGdiUnrealizeObject(HGDIOBJ hgdiobj)
|
||||||
case GDI_OBJECT_TYPE_PALETTE:
|
case GDI_OBJECT_TYPE_PALETTE:
|
||||||
{
|
{
|
||||||
/* Make sure this is a Palette object!*/
|
/* Make sure this is a Palette object!*/
|
||||||
|
DPRINT1("GDI_OBJECT_TYPE_PALETTE\n");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case GDI_OBJECT_TYPE_BRUSH:
|
||||||
|
{
|
||||||
|
DPRINT1("GDI_OBJECT_TYPE_BRUSH\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -274,7 +274,7 @@ NtGdiSwapBuffers 1
|
||||||
NtGdiTextOut 5
|
NtGdiTextOut 5
|
||||||
NtGdiTransparentBlt 11
|
NtGdiTransparentBlt 11
|
||||||
NtGdiTranslateCharsetInfo 3
|
NtGdiTranslateCharsetInfo 3
|
||||||
NtGdiUnrealizeObject 2
|
NtGdiUnrealizeObject 1
|
||||||
NtGdiUpdateColors 1
|
NtGdiUpdateColors 1
|
||||||
NtGdiUpdateICMRegKey 4
|
NtGdiUpdateICMRegKey 4
|
||||||
NtGdiWidenPath 1
|
NtGdiWidenPath 1
|
||||||
|
|
Loading…
Reference in a new issue