mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
fixed wrong parameters
svn path=/trunk/; revision=6350
This commit is contained in:
parent
04b57ad0bd
commit
dc71bde604
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: caret.c,v 1.3 2003/10/17 20:31:56 weiden Exp $
|
/* $Id: caret.c,v 1.4 2003/10/17 20:50:59 weiden Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
* FILE: lib/user32/windows/caret.c
|
* FILE: lib/user32/windows/caret.c
|
||||||
|
@ -131,7 +131,7 @@ WINBOOL STDCALL
|
||||||
SetCaretPos(int X,
|
SetCaretPos(int X,
|
||||||
int Y)
|
int Y)
|
||||||
{
|
{
|
||||||
return (WINBOOL)NtUserCallTwoParam(TWOPARAM_ROUTINE_SETCARETPOS, (DWORD)X, (DWORD)Y);
|
return (WINBOOL)NtUserCallTwoParam((DWORD)X, (DWORD)Y, TWOPARAM_ROUTINE_SETCARETPOS);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue