| 22 | } |
| 23 | |
| 24 | std::string GetDateText(const SYSTEMTIME& st) |
| 25 | { |
| 26 | int size = GetDateFormatA(LOCALE_USER_DEFAULT, 0, &st, nullptr, nullptr, 0); |
| 27 | std::vector<char> buf(size); |
| 28 | GetDateFormatA(LOCALE_USER_DEFAULT, 0, &st, nullptr, buf.data(), size); |
| 29 | return std::string(buf.data(), size - 1); |
| 30 | } |
| 31 | |
| 32 | std::string GetDateText(const FILETIME& ft) |
| 33 | { |
no test coverage detected