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:
parent
b86e7dfccd
commit
bf04ee6685
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue