mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:15:52 +00:00
Fixed parameter names of PatBlt.
svn path=/trunk/; revision=7145
This commit is contained in:
parent
67839ab422
commit
188c654673
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue