Line | Code | Value | Export IDENTIFIER |
196 | posstr.Format(_T("%02d:%02d:%02d"), tcNow.bHours, tcNow.bMinutes, tcNow.bSeconds); | %02d:%02d:%02d | |
198 | posstr.Format(_T("%02d:%02d"), tcNow.bMinutes, tcNow.bSeconds); | %02d:%02d | |
201 | durstr.Format(_T("%02d:%02d:%02d"), tcDur.bHours, tcDur.bMinutes, tcDur.bSeconds); | %02d:%02d:%02d | |
203 | durstr.Format(_T("%02d:%02d"), tcDur.bMinutes, tcDur.bSeconds); | %02d:%02d | |
207 | str.Format(_T("%s.%03d"), posstr, (rtNow/10000)%1000); | %s.%03d | |
209 | str.Format(_T("%s.%03d"), durstr, (rtDur/10000)%1000); | %s.%03d | |
216 | posstr.Format(_T("%I64d"), rtNow); | %I64d | |
217 | durstr.Format(_T("%I64d"), rtDur); | %I64d | |
| | | |