| 723 | |
| 724 | |
| 725 | static FILETIME add_FILETIME( FILETIME t1, FILETIME t2 ) |
| 726 | { |
| 727 | return add_64( t1.dwHighDateTime, t1.dwLowDateTime, t2.dwHighDateTime, |
| 728 | t2.dwLowDateTime ); |
| 729 | } |
| 730 | |
| 731 | |
| 732 | static FILETIME negate_FILETIME( FILETIME t ) |
no test coverage detected