Enable FillRgn

svn path=/trunk/; revision=5109
This commit is contained in:
James Tabor 2003-07-14 06:36:36 +00:00
parent 2ac4b3136b
commit 260e788eba
3 changed files with 22 additions and 16 deletions

View file

@ -1,3 +1,9 @@
2003-07-14 James Tabor <jimtabor@adsl-64-217-116-74.dsl.hstntx.swbell.net>
* lib/gdi32/misc/stubs.c Remove FillRgn.
* lib/gdi32/objects/region.c Add FillRng.
It looks okay.
2003-07-12 Casper S. Hornstrup <chorns@users.sourceforge.net>
Changes for compiling with w32api

View file

@ -1,4 +1,4 @@
/* $Id: stubs.c,v 1.21 2003/07/10 15:35:49 chorns Exp $
/* $Id: stubs.c,v 1.22 2003/07/14 06:34:38 jimtabor Exp $
*
* reactos/lib/gdi32/misc/stubs.c
*
@ -395,21 +395,6 @@ ExtFloodFill(
}
/*
* @unimplemented
*/
BOOL
STDCALL
FillRgn(
HDC a0,
HRGN a1,
HBRUSH a2
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*
* @unimplemented

View file

@ -190,3 +190,18 @@ PaintRgn(
{
return W32kPaintRgn( a0, a1 );
}
/*
* @implemented
*/
BOOL
STDCALL
FillRgn(
HDC a0,
HRGN a1,
HBRUSH a2
)
{
return W32kFillRgn(a0, a1, a2);
}