@@ -516,6 +516,8 @@ LRESULT CALLBACK Hook_TscShellContainerWndProc(HWND hWnd, UINT uMsg, WPARAM wPar
516
516
517
517
CMsRdpExInstance* instance = MsRdpEx_InstanceManager_FindByTscShellContainerWnd (hWnd);
518
518
519
+ // MsRdpEx_LogPrint(DEBUG, "TscShellContainerWnd: %s (%d)", MsRdpEx_GetWindowMessageName(uMsg), uMsg);
520
+
519
521
result = Real_TscShellContainerWndProc (hWnd, uMsg, wParam, lParam);
520
522
521
523
if (instance)
@@ -724,7 +726,7 @@ LRESULT CALLBACK Hook_IHWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPar
724
726
AppendMenu (hExtraMenu, MF_STRING, SYSMENU_RDP_SEND_CTRL_ALT_END_ID, L" Send Ctrl+Alt+End" );
725
727
726
728
AppendMenu (hSystemMenu, MF_SEPARATOR, 0 , NULL );
727
- AppendMenu (hSystemMenu, MF_POPUP, (UINT_PTR)hExtraMenu, L" Extra" );
729
+ AppendMenu (hSystemMenu, MF_POPUP, (:: UINT_PTR)hExtraMenu, L" Extra" );
728
730
729
731
instance->AttachTscShellContainerWindow (hParentWnd);
730
732
}
@@ -1245,6 +1247,41 @@ LSTATUS Hook_RegCloseKey(HKEY hKey)
1245
1247
return lstatus;
1246
1248
}
1247
1249
1250
+ typedef BOOL (WINAPI* Func_DeleteMenu)(HMENU hMenu, UINT uPosition, UINT uFlags);
1251
+
1252
+ static Func_DeleteMenu Real_DeleteMenu = DeleteMenu;
1253
+
1254
+ BOOL Hook_DeleteMenu (HMENU hMenu, UINT uPosition, UINT uFlags)
1255
+ {
1256
+ BOOL success = TRUE ;
1257
+ BOOL skipDelete = FALSE ;
1258
+
1259
+ if (!(uFlags & MF_BYPOSITION) && MsRdpEx_IsAddressInRdpExeModule (_ReturnAddress ()))
1260
+ {
1261
+ MENUITEMINFOA mii = { 0 };
1262
+ mii.cbSize = sizeof (MENUITEMINFOA);
1263
+ mii.fMask = MIIM_ID | MIIM_STRING;
1264
+ char itemName[256 ] = { 0 };
1265
+ mii.dwTypeData = itemName;
1266
+ mii.cch = sizeof (itemName);
1267
+
1268
+ if (GetMenuItemInfoA (hMenu, uPosition, FALSE , &mii))
1269
+ {
1270
+ if ((mii.wID == 0 ) && (mii.cch == 0 )) {
1271
+ MsRdpEx_LogPrint (DEBUG, " DeleteMenu hMenu: %p uPosition: 0x%04X uFlags 0x%04X" , hMenu, uPosition, uFlags);
1272
+ MsRdpEx_LogPrint (DEBUG, " Skipping deletion of menu item ID: 0x%04X, name: %s, cch: %d" , mii.wID , itemName, mii.cch );
1273
+ skipDelete = TRUE ; // work around bug where separator menu items are deleted by CContainerWnd::SyncClipboardMenu()
1274
+ }
1275
+ }
1276
+ }
1277
+
1278
+ if (!skipDelete) {
1279
+ success = Real_DeleteMenu (hMenu, uPosition, uFlags);
1280
+ }
1281
+
1282
+ return success;
1283
+ }
1284
+
1248
1285
bool MsRdpEx_IsAddressInModule (PVOID pAddress, LPCTSTR pszModule)
1249
1286
{
1250
1287
bool result;
@@ -1296,6 +1333,12 @@ bool MsRdpEx_IsAddressInRdclientAxModule(PVOID pAddress)
1296
1333
return MsRdpEx_IsAddressInModule (pAddress, L" rdclientax.dll" );
1297
1334
}
1298
1335
1336
+ bool MsRdpEx_IsAddressInRdpExeModule (PVOID pAddress)
1337
+ {
1338
+ return MsRdpEx_IsAddressInModule (pAddress, L" mstsc.exe" ) ||
1339
+ MsRdpEx_IsAddressInModule (pAddress, L" msrdc.exe" );
1340
+ }
1341
+
1299
1342
void MsRdpEx_GlobalInit ()
1300
1343
{
1301
1344
MsRdpEx_NameResolver_Get ();
@@ -1368,6 +1411,8 @@ LONG MsRdpEx_AttachHooks()
1368
1411
// MSRDPEX_DETOUR_ATTACH(Real_RegOpenKeyExW, Hook_RegOpenKeyExW);
1369
1412
// MSRDPEX_DETOUR_ATTACH(Real_RegQueryValueExW, Hook_RegQueryValueExW);
1370
1413
// MSRDPEX_DETOUR_ATTACH(Real_RegCloseKey, Hook_RegCloseKey);
1414
+
1415
+ MSRDPEX_DETOUR_ATTACH (Real_DeleteMenu, Hook_DeleteMenu);
1371
1416
1372
1417
MsRdpEx_AttachSspiHooks ();
1373
1418
error = DetourTransactionCommit ();
@@ -1425,6 +1470,8 @@ LONG MsRdpEx_DetachHooks()
1425
1470
// MSRDPEX_DETOUR_DETACH(Real_RegOpenKeyExW, Hook_RegOpenKeyExW);
1426
1471
// MSRDPEX_DETOUR_DETACH(Real_RegQueryValueExW, Hook_RegQueryValueExW);
1427
1472
// MSRDPEX_DETOUR_DETACH(Real_RegCloseKey, Hook_RegCloseKey);
1473
+
1474
+ MSRDPEX_DETOUR_DETACH (Real_DeleteMenu, Hook_DeleteMenu);
1428
1475
1429
1476
MsRdpEx_DetachSspiHooks ();
1430
1477
error = DetourTransactionCommit ();
0 commit comments