user32: Add stub for EnableMouseInPointer().

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Józef Kucia 2018-04-11 15:24:23 +02:00 committed by Alexandre Julliard
parent 8ee5d18b42
commit 9a95f10249
3 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,4 @@
@ stub EnableMouseInPointer
@ stdcall EnableMouseInPointer(long) user32.EnableMouseInPointer
@ stub GetCurrentInputMessageSource
@ stub GetPointerCursorId
@ stub GetPointerDevice

View File

@ -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;
}

View File

@ -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)