mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:43:05 +00:00
[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:
parent
c7eba0c5c7
commit
b6562a664b
6 changed files with 95 additions and 73 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue