Commit b17ef15e authored by Mohamad Al-Jaf's avatar Mohamad Al-Jaf Committed by Alexandre Julliard

windows.ui: Return success in IInputPane2::TryShow().

parent 0a9f2494
......@@ -158,7 +158,8 @@ DEFINE_IINSPECTABLE( inputpane2, IInputPane2, struct inputpane, IInputPane_iface
static HRESULT WINAPI inputpane2_TryShow( IInputPane2 *iface, boolean *result )
{
FIXME( "iface %p, result %p stub!\n", iface, result );
return E_NOTIMPL;
*result = FALSE;
return S_OK;
}
static HRESULT WINAPI inputpane2_TryHide( IInputPane2 *iface, boolean *result )
......
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