get initial time in ms
| 34 | |
| 35 | // get initial time in ms |
| 36 | int Recorder::getMilliCount() |
| 37 | { |
| 38 | ftime(&tb); |
| 39 | int nCount = tb.millitm + (tb.time & 0xfffff) * 1000; |
| 40 | return nCount; |
| 41 | } |
| 42 | |
| 43 | // get time diff from nTimeStart to now |
| 44 | int Recorder::getMilliSpan(int nTimeStart) |
nothing calls this directly
no outgoing calls
no test coverage detected