mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 07:42:59 +00:00
Bug fixes.
svn path=/trunk/; revision=7172
This commit is contained in:
parent
fc7a16a754
commit
d9ade843d5
2 changed files with 20 additions and 20 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: stubs.c,v 1.43 2003/12/21 10:27:10 navaraf Exp $
|
/* $Id: stubs.c,v 1.44 2003/12/21 22:41:00 navaraf Exp $
|
||||||
*
|
*
|
||||||
* reactos/lib/gdi32/misc/stubs.c
|
* reactos/lib/gdi32/misc/stubs.c
|
||||||
*
|
*
|
||||||
|
@ -466,24 +466,6 @@ GetFontLanguageInfo(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
int
|
|
||||||
STDCALL
|
|
||||||
IntersectClipRect(
|
|
||||||
HDC hDc,
|
|
||||||
int a1,
|
|
||||||
int a2,
|
|
||||||
int a3,
|
|
||||||
int a4
|
|
||||||
)
|
|
||||||
{
|
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @unimplemented
|
* @unimplemented
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: clip.c,v 1.3 2003/08/19 11:48:49 weiden Exp $
|
/* $Id: clip.c,v 1.4 2003/12/21 22:41:00 navaraf Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS gdi32.dll
|
* PROJECT: ReactOS gdi32.dll
|
||||||
* FILE: lib/gdi32/objects/clip.c
|
* FILE: lib/gdi32/objects/clip.c
|
||||||
|
@ -38,3 +38,21 @@ SelectClipRgn(HDC DC, HRGN Rgn)
|
||||||
{
|
{
|
||||||
return NtGdiSelectClipRgn(DC, Rgn);
|
return NtGdiSelectClipRgn(DC, Rgn);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @implemented
|
||||||
|
*/
|
||||||
|
int
|
||||||
|
STDCALL
|
||||||
|
IntersectClipRect(
|
||||||
|
HDC hDc,
|
||||||
|
int a1,
|
||||||
|
int a2,
|
||||||
|
int a3,
|
||||||
|
int a4
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return NtGdiIntersectClipRect(hDc, a1, a2, a3, a4);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue