MCPcopy Create free account
hub / github.com/derceg/explorerplusplus / GetItemInfoTip

Function GetItemInfoTip

Explorer++/Helper/ShellHelper.cpp:1255–1266  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1253}
1254
1255HRESULT GetItemInfoTip(const TCHAR *szItemPath, TCHAR *szInfoTip, size_t cchMax)
1256{
1257 unique_pidl_absolute pidlItem;
1258 HRESULT hr = SHParseDisplayName(szItemPath, nullptr, wil::out_param(pidlItem), 0, nullptr);
1259
1260 if (SUCCEEDED(hr))
1261 {
1262 hr = GetItemInfoTip(pidlItem.get(), szInfoTip, cchMax);
1263 }
1264
1265 return hr;
1266}
1267
1268HRESULT GetItemInfoTip(PCIDLIST_ABSOLUTE pidlComplete, TCHAR *szInfoTip, size_t cchMax)
1269{

Callers 3

GetInfoTipAsyncMethod · 0.85

Calls 3

GetUIObjectOfFunction · 0.85
getMethod · 0.45
ReleaseMethod · 0.45

Tested by

no test coverage detected