ninput: Add RegisterOutputCallbackInteractionContext() stub.

Signed-off-by: Józef Kucia <jkucia@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Józef Kucia 2018-06-21 16:19:46 +02:00 committed by Alexandre Julliard
parent b86e7dfccd
commit bf04ee6685
2 changed files with 14 additions and 1 deletions

View File

@ -148,6 +148,19 @@ HRESULT WINAPI SetInteractionConfigurationInteractionContext(HINTERACTIONCONTEXT
return S_OK;
}
HRESULT WINAPI RegisterOutputCallbackInteractionContext(HINTERACTIONCONTEXT handle,
INTERACTION_CONTEXT_OUTPUT_CALLBACK callback, void *data)
{
struct interaction_context *context = context_from_handle(handle);
FIXME("context %p, callback %p, data %p: stub!.\n", context, callback, data);
if (!context)
return E_HANDLE;
return S_OK;
}
HRESULT WINAPI ProcessInertiaInteractionContext(HINTERACTIONCONTEXT context)
{
FIXME("context %p: stub!\n", context);

View File

@ -12,7 +12,7 @@
@ stub ProcessBufferedPacketsInteractionContext
@ stdcall ProcessInertiaInteractionContext(ptr)
@ stub ProcessPointerFramesInteractionContext
@ stub RegisterOutputCallbackInteractionContext
@ stdcall RegisterOutputCallbackInteractionContext(ptr ptr ptr)
@ stub RemovePointerInteractionContext
@ stub ResetInteractionContext
@ stub SetCrossSlideParametersInteractionContext