user32: Add stub for EnableMouseInPointer().
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8ee5d18b42
commit
9a95f10249
|
@ -1,4 +1,4 @@
|
|||
@ stub EnableMouseInPointer
|
||||
@ stdcall EnableMouseInPointer(long) user32.EnableMouseInPointer
|
||||
@ stub GetCurrentInputMessageSource
|
||||
@ stub GetPointerCursorId
|
||||
@ stub GetPointerDevice
|
||||
|
|
|
@ -1514,3 +1514,14 @@ int WINAPI GetMouseMovePointsEx(UINT size, LPMOUSEMOVEPOINT ptin, LPMOUSEMOVEPOI
|
|||
SetLastError(ERROR_POINT_NOT_FOUND);
|
||||
return -1;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* EnableMouseInPointer (USER32.@)
|
||||
*/
|
||||
BOOL WINAPI EnableMouseInPointer(BOOL enable)
|
||||
{
|
||||
FIXME("(%#x) stub\n", enable);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -203,6 +203,7 @@
|
|||
@ stdcall EditWndProc(long long long long) EditWndProcA
|
||||
@ stdcall EmptyClipboard()
|
||||
@ stdcall EnableMenuItem(long long long)
|
||||
@ stdcall EnableMouseInPointer(long)
|
||||
@ stdcall EnableScrollBar(long long long)
|
||||
@ stdcall EnableWindow(long long)
|
||||
@ stdcall EndDeferWindowPos(long)
|
||||
|
|
Loading…
Reference in New Issue