mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 22:11:38 -06:00
4.38 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
cb9eea7264
commit
83911c8529
@@ -115,7 +115,7 @@ STDMETHODIMP CHandler::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *val
|
||||
{
|
||||
// wchar_t name[32];
|
||||
// ConvertUInt64ToString(index + 1, name);
|
||||
UString s = L"[BOOT]\\";
|
||||
UString s = L"[BOOT]" WSTRING_PATH_SEPARATOR;
|
||||
// s += name;
|
||||
// s += L"-";
|
||||
s += be.GetName();
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace NBootEntryId
|
||||
const Byte kValidationEntry = 1;
|
||||
const Byte kInitialEntryNotBootable = 0;
|
||||
const Byte kInitialEntryBootable = 0x88;
|
||||
};
|
||||
}
|
||||
|
||||
namespace NBootPlatformId
|
||||
{
|
||||
|
||||
@@ -62,7 +62,7 @@ struct CDir: public CDirRecord
|
||||
if (cur->Parent == 0)
|
||||
break;
|
||||
p--;
|
||||
*p = '\\';
|
||||
*p = CHAR_PATH_SEPARATOR;
|
||||
}
|
||||
s.ReleaseBuffer();
|
||||
return s;
|
||||
@@ -92,7 +92,7 @@ struct CDir: public CDirRecord
|
||||
if (cur->Parent == 0)
|
||||
break;
|
||||
p--;
|
||||
*p = L'\\';
|
||||
*p = WCHAR_PATH_SEPARATOR;
|
||||
}
|
||||
s.ReleaseBuffer();
|
||||
return s;
|
||||
|
||||
Reference in New Issue
Block a user