Skip to content

Commit 549f153

Browse files
Marc-André Moreauawakecoding
Marc-André Moreau
authored andcommitted
fix keyboard hook mode toggle
1 parent 103bab0 commit 549f153

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

dll/ApiHooks.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,7 @@ LRESULT CALLBACK Hook_IHWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
909909
{
910910
IUnknown* pUnknown = NULL;
911911
IMsRdpClient9* pMsRdpClient9 = NULL;
912-
IMsRdpClientSecuredSettings* pMsRdpClientSecuredSettings = NULL;
912+
IMsRdpClientSecuredSettings2* pMsRdpClientSecuredSettings = NULL;
913913

914914
if (instance)
915915
instance->GetRdpClient((LPVOID*)&pUnknown);
@@ -918,7 +918,7 @@ LRESULT CALLBACK Hook_IHWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
918918
pUnknown->QueryInterface(IID_IMsRdpClient9, (LPVOID*)&pMsRdpClient9);
919919

920920
if (pMsRdpClient9)
921-
pMsRdpClient9->get_SecuredSettings2(&pMsRdpClientSecuredSettings);
921+
pMsRdpClient9->get_SecuredSettings3(&pMsRdpClientSecuredSettings);
922922

923923
LONG keyboardHookMode = 0;
924924
pMsRdpClientSecuredSettings->get_KeyboardHookMode(&keyboardHookMode);
@@ -941,6 +941,13 @@ LRESULT CALLBACK Hook_IHWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
941941
MsRdpEx_LogPrint(DEBUG, "New KeyboardHookMode: %d", keyboardHookMode);
942942
pMsRdpClientSecuredSettings->put_KeyboardHookMode(keyboardHookMode);
943943

944+
VARIANT propValue;
945+
VariantInit(&propValue);
946+
propValue.vt = VT_I4;
947+
propValue.intVal = keyboardHookMode;
948+
bstr_t propName = _com_util::ConvertStringToBSTR("KeyboardHookMode");
949+
pExtendedSettings->put_BaseProperty(propName, &propValue);
950+
944951
if (pMsRdpClient9)
945952
pMsRdpClient9->Release();
946953

0 commit comments

Comments
 (0)