Name Description Size
BrowseDialog.cpp 24417
BrowseDialog.h CorrectFsPath removes undesirable characters in names (dots and spaces at the end of file) But it doesn't change "bad" name in any of the following cases: - path is Super Path (with \\?\ prefix) - path is relative and relBase is Super Path - there is file or dir in filesystem with specified "bad" name 817
BrowseDialogRes.h 226
ComboDialog.cpp // why it doesn't work ? DWORD style = _comboBox.GetStyle(); if (Sorted) style |= CBS_SORT; else style &= ~CBS_SORT; _comboBox.SetStyle(style); 1333
ComboDialog.h 686
ComboDialogRes.h 74
DialogSize.h 362
ExtractCallback.cpp HRESULT CExtractCallbackImp::Open_GetPasswordIfAny(bool &passwordIsDefined, UString &password) { passwordIsDefined = PasswordIsDefined; password = Password; return S_OK; } bool CExtractCallbackImp::Open_WasPasswordAsked() { return PasswordWasAsked; } void CExtractCallbackImp::Open_Clear_PasswordWasAsked_Flag() { PasswordWasAsked = false; } 26343
ExtractCallback.h Files[0].IsAltStream || 7382
FormatUtils.cpp 577
FormatUtils.h 339
LangUtils.h 1089
MyWindowsNew.h 2020
OverwriteDialog.cpp 3043
OverwriteDialog.h 1394
OverwriteDialog.rc 2743
OverwriteDialogRes.h 572
PasswordDialog.cpp 1166
PasswordDialog.h 700
PasswordDialog.rc 437
PasswordDialogRes.h 140
ProgressDialog.cpp timerID 4076
ProgressDialog.h 3923
ProgressDialog.rc 351
ProgressDialog2.cpp 31886
ProgressDialog2.h 8872
ProgressDialog2.rc 677
ProgressDialog2a.rc 2725
ProgressDialog2Res.h 1460
ProgressDialogRes.h 56
PropertyName.cpp 436
PropertyName.h 192
PropertyNameRes.h 3700
resource.h 6139
resourceGui.h 489
SysIconUtils.cpp DWORD_PTR GetRealIconIndex(const UString &fileName, DWORD attrib, int &iconIndex, UString *typeName) { #ifndef _UNICODE if (!g_IsNT) { SHFILEINFO shellInfo; shellInfo.szTypeName[0] = 0; DWORD_PTR res = ::SHGetFileInfoA(GetSystemString(fileName), FILE_ATTRIBUTE_NORMAL | attrib, &shellInfo, sizeof(shellInfo), SHGFI_USEFILEATTRIBUTES | SHGFI_SYSICONINDEX | SHGFI_TYPENAME); if (typeName) typeName = GetUnicodeString(shellInfo.szTypeName); iconIndex = shellInfo.iIcon; return res; } else #endif { SHFILEINFOW shellInfo; shellInfo.szTypeName[0] = 0; DWORD_PTR res = ::MySHGetFileInfoW(fileName, FILE_ATTRIBUTE_NORMAL | attrib, &shellInfo, sizeof(shellInfo), SHGFI_USEFILEATTRIBUTES | SHGFI_SYSICONINDEX | SHGFI_TYPENAME); if (typeName) typeName = shellInfo.szTypeName; iconIndex = shellInfo.iIcon; return res; } } 6423
SysIconUtils.h , UString *typeName 1487