1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

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

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=56536
This commit is contained in:
Mohamad Al-Jaf 2024-04-07 01:44:54 -04:00 committed by Alexandre Julliard
parent 0a9f2494df
commit b17ef15e12

View File

@ -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 )