mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 12:23:25 +00:00
Fixed parameter names of PatBlt.
svn path=/trunk/; revision=7145
This commit is contained in:
@@ -340,9 +340,9 @@ SetPixel(HDC hDC,
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
PatBlt(HDC hDC, INT Top, INT Left, INT Width, INT Height, ULONG Rop)
|
||||
PatBlt(HDC hDC, INT Left, INT Top, INT Width, INT Height, ULONG Rop)
|
||||
{
|
||||
return(NtGdiPatBlt(hDC, Top, Left, Width, Height, Rop));
|
||||
return NtGdiPatBlt(hDC, Left, Top, Width, Height, Rop);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user