| 31 | |
| 32 | |
| 33 | static string get_local_time_string() |
| 34 | { |
| 35 | SYSTEMTIME st; |
| 36 | GetLocalTime(&st); |
| 37 | char buf[16]; |
| 38 | sprintf_s(buf, "%02d:%02d:%02d\n", st.wHour, st.wMinute, st.wSecond); |
| 39 | |
| 40 | return string(buf); |
| 41 | } |
| 42 | |
| 43 | |
| 44 | KeyCache::KeyCache() |
no outgoing calls
no test coverage detected