| 655 | |
| 656 | |
| 657 | static FILETIME add_FILETIME( FILETIME t1, FILETIME t2 ) |
| 658 | { |
| 659 | return add_64( t1.dwHighDateTime, t1.dwLowDateTime, t2.dwHighDateTime, |
| 660 | t2.dwLowDateTime ); |
| 661 | } |
| 662 | |
| 663 | |
| 664 | static FILETIME negate_FILETIME( FILETIME t ) |
no test coverage detected