mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
mark GetPixel as @implemented and fix param names
svn path=/trunk/; revision=8744
This commit is contained in:
parent
c6476093e1
commit
b57b6bb796
1 changed files with 4 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: bitblt.c,v 1.17 2004/02/14 00:31:39 sedwards Exp $
|
||||
/* $Id: bitblt.c,v 1.18 2004/03/15 04:21:17 royce Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -349,17 +349,13 @@ SetPixel(HDC hDC,
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
COLORREF
|
||||
STDCALL
|
||||
GetPixel(
|
||||
HDC a0,
|
||||
int a1,
|
||||
int a2
|
||||
)
|
||||
GetPixel(HDC hDC, int X, int Y)
|
||||
{
|
||||
return NtGdiGetPixel(a0, a1, a2);
|
||||
return NtGdiGetPixel(hDC, X, Y);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue