Commit 9a95f102 authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

user32: Add stub for EnableMouseInPointer().

parent 8ee5d18b
@ 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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment