| 1363 | } |
| 1364 | |
| 1365 | BOOL CompareVirtualFolders(const TCHAR *szDirectory, UINT uFolderCSIDL) |
| 1366 | { |
| 1367 | TCHAR szParsingPath[MAX_PATH]; |
| 1368 | |
| 1369 | GetCsidlDisplayName(uFolderCSIDL, szParsingPath, SIZEOF_ARRAY(szParsingPath), SHGDN_FORPARSING); |
| 1370 | |
| 1371 | if (StrCmp(szDirectory, szParsingPath) == 0) |
| 1372 | { |
| 1373 | return TRUE; |
| 1374 | } |
| 1375 | |
| 1376 | return FALSE; |
| 1377 | } |
| 1378 | |
| 1379 | bool IsChildOfLibrariesFolder(PCIDLIST_ABSOLUTE pidl) |
| 1380 | { |
no test coverage detected