[SHELL32] DefView statusbar item file size fix in recycler and UNC (#7732)

- Display item sizes inside \\ UNC paths.
- Don't display anything in the location pane inside the Recycle Bin (CORE-20005).
- Don't display the size and location panes in My Computer
- Don't update the location pane on simple item selection changes.

CORE-20005
This commit is contained in:
Whindmar Saksit 2025-03-27 18:29:44 +01:00 committed by GitHub
parent c7eba0c5c7
commit b6562a664b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 95 additions and 73 deletions

View file

@ -24,6 +24,13 @@ SHELL_ErrorBox(CMINVOKECOMMANDINFO &cmi, UINT Error)
}
#endif
static inline BOOL
IsEqualPersistClassID(IPersist *pPersist, REFCLSID clsid)
{
CLSID temp;
return pPersist && SUCCEEDED(pPersist->GetClassID(&temp)) && IsEqualCLSID(clsid, temp);
}
static inline BOOL
RegValueExists(HKEY hKey, LPCWSTR Name)
{