From e60a2c2441c3336cb619df43bbb8a0f1eb767f9d Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 23 Aug 2007 17:04:28 +0000 Subject: [PATCH] move NtGdiExtFloodFill from bitblt.c to filshap.c svn path=/trunk/; revision=28479 --- reactos/subsystems/win32/win32k/objects/bitblt.c | 14 -------------- reactos/subsystems/win32/win32k/objects/fillshap.c | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/bitblt.c b/reactos/subsystems/win32/win32k/objects/bitblt.c index 06e42eb87e9..5a9a15656a8 100644 --- a/reactos/subsystems/win32/win32k/objects/bitblt.c +++ b/reactos/subsystems/win32/win32k/objects/bitblt.c @@ -535,20 +535,6 @@ done: return Ret; } -BOOL STDCALL -NtGdiExtFloodFill( - HDC hDC, - INT XStart, - INT YStart, - COLORREF Color, - UINT FillType) -{ - DPRINT1("FIXME: NtGdiExtFloodFill is UNIMPLEMENTED\n"); - - /* lie and say we succeded */ - return TRUE; -} - /*********************************************************************** * MaskBlt * Ported from WINE by sedwards 11-4-03 diff --git a/reactos/subsystems/win32/win32k/objects/fillshap.c b/reactos/subsystems/win32/win32k/objects/fillshap.c index dad0fe2a270..72089c61db0 100644 --- a/reactos/subsystems/win32/win32k/objects/fillshap.c +++ b/reactos/subsystems/win32/win32k/objects/fillshap.c @@ -1659,4 +1659,18 @@ NtGdiGradientFill( return Ret; } +BOOL STDCALL +NtGdiExtFloodFill( + HDC hDC, + INT XStart, + INT YStart, + COLORREF Color, + UINT FillType) +{ + DPRINT1("FIXME: NtGdiExtFloodFill is UNIMPLEMENTED\n"); + + /* lie and say we succeded */ + return TRUE; +} + /* EOF */