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

ninput: Add RegisterOutputCallbackInteractionContext() stub.

parent b86e7dfc
......@@ -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);
......
......@@ -12,7 +12,7 @@
@ stub ProcessBufferedPacketsInteractionContext
@ stdcall ProcessInertiaInteractionContext(ptr)
@ stub ProcessPointerFramesInteractionContext
@ stub RegisterOutputCallbackInteractionContext
@ stdcall RegisterOutputCallbackInteractionContext(ptr ptr ptr)
@ stub RemovePointerInteractionContext
@ stub ResetInteractionContext
@ stub SetCrossSlideParametersInteractionContext
......
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