mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
[win32k]
- Remove an unused reactos only syscall svn path=/trunk/; revision=44573
This commit is contained in:
parent
0b560ed72b
commit
25dc69e9d5
3 changed files with 0 additions and 36 deletions
|
@ -3136,12 +3136,6 @@ NtUserGetScrollInfo(
|
|||
int fnBar,
|
||||
LPSCROLLINFO lpsi);
|
||||
|
||||
/* Should be done in usermode and use NtUserGetCPD. */
|
||||
LONG
|
||||
NTAPI
|
||||
NtUserGetWindowLong(HWND hWnd, DWORD Index, BOOL Ansi);
|
||||
|
||||
|
||||
/* (other FocusedItem values give the position of the focused item) */
|
||||
#define NO_SELECTED_ITEM 0xffff
|
||||
|
||||
|
|
|
@ -3822,35 +3822,6 @@ UserGetWindowLong(HWND hWnd, DWORD Index, BOOL Ansi)
|
|||
return Result;
|
||||
}
|
||||
|
||||
/*
|
||||
* NtUserGetWindowLong
|
||||
*
|
||||
* The NtUserGetWindowLong function retrieves information about the specified
|
||||
* window. The function also retrieves the 32-bit (long) value at the
|
||||
* specified offset into the extra window memory.
|
||||
*
|
||||
* Status
|
||||
* @implemented
|
||||
*/
|
||||
|
||||
LONG APIENTRY
|
||||
NtUserGetWindowLong(HWND hWnd, DWORD Index, BOOL Ansi)
|
||||
{
|
||||
DECLARE_RETURN(LONG);
|
||||
|
||||
DPRINT("Enter NtUserGetWindowLong(%x,%d,%d)\n", hWnd, (INT)Index, Ansi);
|
||||
UserEnterExclusive();
|
||||
|
||||
RETURN(UserGetWindowLong(hWnd, Index, Ansi));
|
||||
|
||||
CLEANUP:
|
||||
DPRINT("Leave NtUserGetWindowLong, ret=%i\n",_ret_);
|
||||
UserLeave();
|
||||
END_CLEANUP;
|
||||
}
|
||||
|
||||
|
||||
|
||||
LONG FASTCALL
|
||||
co_UserSetWindowLong(HWND hWnd, DWORD Index, LONG NewValue, BOOL Ansi)
|
||||
{
|
||||
|
|
|
@ -690,7 +690,6 @@ NtUserGetLastInputInfo 1
|
|||
NtUserGetMinMaxInfo 3
|
||||
NtUserGetMonitorInfo 2
|
||||
NtUserGetScrollInfo 3
|
||||
NtUserGetWindowLong 3
|
||||
NtUserMenuInfo 3
|
||||
NtUserMenuItemInfo 5
|
||||
NtUserMonitorFromPoint 3
|
||||
|
|
Loading…
Reference in a new issue