mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 10:24:13 -06:00
15.08
This commit is contained in:
committed by
Kornel Lesiński
parent
f6444c3256
commit
6543c28020
@@ -37,7 +37,17 @@ bool ConvertFileTimeToString(const FILETIME &ft, char *s, bool includeTime, bool
|
||||
UINT_TO_STR_2(' ', st.wHour);
|
||||
UINT_TO_STR_2(':', st.wMinute);
|
||||
if (includeSeconds)
|
||||
{
|
||||
UINT_TO_STR_2(':', st.wSecond);
|
||||
/*
|
||||
*s++ = '.';
|
||||
unsigned val = st.wMilliseconds;
|
||||
s[2] = (char)('0' + val % 10); val /= 10;
|
||||
s[1] = (char)('0' + val % 10);
|
||||
s[0] = (char)('0' + val / 10);
|
||||
s += 3;
|
||||
*/
|
||||
}
|
||||
}
|
||||
*s = 0;
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user