Author: fireball Date: Wed Jul 29 15:42:26 2009 New Revision: 42287
URL: http://svn.reactos.org/svn/reactos?rev=42287&view=rev Log: - Implement EngDeletePalette.
Modified: branches/arwinss/reactos/subsystems/win32/win32k/eng/engpal.c
Modified: branches/arwinss/reactos/subsystems/win32/win32k/eng/engpal.c URL: http://svn.reactos.org/svn/reactos/branches/arwinss/reactos/subsystems/win32... ============================================================================== --- branches/arwinss/reactos/subsystems/win32/win32k/eng/engpal.c [iso-8859-1] (original) +++ branches/arwinss/reactos/subsystems/win32/win32k/eng/engpal.c [iso-8859-1] Wed Jul 29 15:42:26 2009 @@ -33,10 +33,10 @@
BOOL APIENTRY -EngDeletePalette(IN HPALETTE hpal) +EngDeletePalette(IN HPALETTE hpal) { - UNIMPLEMENTED; - return FALSE; + PALETTE_FreePaletteByHandle(hpal); + return TRUE; }
ULONG