| 123 | |
| 124 | |
| 125 | void timestamp_current( timestamp * const t ) |
| 126 | { |
| 127 | #ifdef OS_NT |
| 128 | /* GetSystemTimeAsFileTime()'s resolution seems to be about 15 ms on Windows |
| 129 | * XP and under a millisecond on Windows 7. |
| 130 | */ |
| 131 | FILETIME ft; |
| 132 | GetSystemTimeAsFileTime( &ft ); |
| 133 | timestamp_from_filetime( t, &ft ); |
| 134 | #else /* OS_NT */ |
| 135 | timestamp_init( t, time( 0 ), 0 ); |
| 136 | #endif /* OS_NT */ |
| 137 | } |
| 138 | |
| 139 | |
| 140 | int timestamp_empty( timestamp const * const time ) |
no test coverage detected