mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 09:52:56 +00:00
Enable FillRgn
svn path=/trunk/; revision=5109
This commit is contained in:
parent
2ac4b3136b
commit
260e788eba
3 changed files with 22 additions and 16 deletions
|
@ -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>
|
2003-07-12 Casper S. Hornstrup <chorns@users.sourceforge.net>
|
||||||
|
|
||||||
Changes for compiling with w32api
|
Changes for compiling with w32api
|
||||||
|
|
|
@ -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
|
* 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
|
* @unimplemented
|
||||||
|
|
|
@ -190,3 +190,18 @@ PaintRgn(
|
||||||
{
|
{
|
||||||
return W32kPaintRgn( a0, a1 );
|
return W32kPaintRgn( a0, a1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
|
BOOL
|
||||||
|
STDCALL
|
||||||
|
FillRgn(
|
||||||
|
HDC a0,
|
||||||
|
HRGN a1,
|
||||||
|
HBRUSH a2
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return W32kFillRgn(a0, a1, a2);
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue