implement SetPixelV

svn path=/trunk/; revision=8857
This commit is contained in:
Royce Mitchell III 2004-03-24 00:13:31 +00:00
parent 7e4896289f
commit 9a854f33a4
2 changed files with 13 additions and 19 deletions

View file

@ -1,4 +1,4 @@
/* $Id: stubs.c,v 1.50 2004/03/23 00:18:54 gvg Exp $
/* $Id: stubs.c,v 1.51 2004/03/24 00:13:31 royce Exp $
*
* reactos/lib/gdi32/misc/stubs.c
*
@ -529,23 +529,6 @@ SetMetaFileBitsEx(
}
/*
* @unimplemented
*/
BOOL
STDCALL
SetPixelV(
HDC a0,
int a1,
int a2,
COLORREF a3
)
{
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*
* @unimplemented
*/

View file

@ -1,4 +1,4 @@
/* $Id: bitblt.c,v 1.18 2004/03/15 04:21:17 royce Exp $
/* $Id: bitblt.c,v 1.19 2004/03/24 00:13:31 royce Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -348,6 +348,17 @@ SetPixel(HDC hDC,
}
/*
* @implemented
*/
BOOL
STDCALL
SetPixelV ( HDC hDC, int XPos, int YPos, COLORREF Color )
{
return NtGdiSetPixelV ( hDC, XPos, YPos, Color );
}
/*
* @implemented
*/