[WIN32SS] Use GDI_HANDLE_* macros for readability (#4797)

This commit is contained in:
Thamatip Chitpong 2022-10-26 07:17:01 +07:00 committed by GitHub
parent 23e5d3fe25
commit dd75ae8eca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -961,7 +961,7 @@ IntSetPaletteEntries(
PPALETTE palGDI;
ULONG numEntries;
if ((UINT_PTR)hpal & GDI_HANDLE_STOCK_MASK)
if (GDI_HANDLE_IS_STOCKOBJ(hpal))
{
return 0;
}
@ -1245,7 +1245,7 @@ NtGdiUnrealizeObject(HGDIOBJ hgdiobj)
PPALETTE palGDI;
if ( !hgdiobj ||
((UINT_PTR)hgdiobj & GDI_HANDLE_STOCK_MASK) ||
GDI_HANDLE_IS_STOCKOBJ(hgdiobj) ||
!GDI_HANDLE_IS_TYPE(hgdiobj, GDI_OBJECT_TYPE_PALETTE) )
return Ret;