| 403 | } |
| 404 | |
| 405 | CString getCurrentTime() |
| 406 | { |
| 407 | SYSTEMTIME st = { 0 }; |
| 408 | GetLocalTime(&st); |
| 409 | CString strTime; |
| 410 | strTime.Format(_T("%02d:%02d:%02d %02d"), st.wHour, st.wHour, st.wMinute, st.wMilliseconds); |
| 411 | return strTime; |
| 412 | } |
| 413 | |
| 414 | CString GetExePath() |
| 415 | { |
no test coverage detected