reactos/lib/gdi32/misc
diff -u -r1.50 -r1.51
--- stubs.c 23 Mar 2004 00:18:54 -0000 1.50
+++ stubs.c 24 Mar 2004 00:13:31 -0000 1.51
@@ -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
*
@@ -532,23 +532,6 @@
/*
* @unimplemented
*/
-BOOL
-STDCALL
-SetPixelV(
- HDC a0,
- int a1,
- int a2,
- COLORREF a3
- )
-{
- SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
- return FALSE;
-}
-
-
-/*
- * @unimplemented
- */
UINT
STDCALL
SetSystemPaletteUse(
reactos/lib/gdi32/objects
diff -u -r1.18 -r1.19
--- bitblt.c 15 Mar 2004 04:21:17 -0000 1.18
+++ bitblt.c 24 Mar 2004 00:13:31 -0000 1.19
@@ -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
@@ -351,6 +351,17 @@
/*
* @implemented
*/
+BOOL
+STDCALL
+SetPixelV ( HDC hDC, int XPos, int YPos, COLORREF Color )
+{
+ return NtGdiSetPixelV ( hDC, XPos, YPos, Color );
+}
+
+
+/*
+ * @implemented
+ */
COLORREF
STDCALL
GetPixel(HDC hDC, int X, int Y)