blob: 1960cf04f415ba309f99f77eefbfe011cdfc1457 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "stdafx.h"
#include "time_utils.h"
SYSTEMTIME last_check;
bool IsBetween(SYSTEMTIME &time, SYSTEMTIME &start, SYSTEMTIME &end)
{
FILETIME ft_time, ft_start, ft_end;
SystemTimeToFileTime(&time, &ft_time);
SystemTimeToFileTime(&start, &ft_start);
SystemTimeToFileTime(&end, &ft_end);
return CompareFileTime(&ft_time, &ft_start) > 0 && CompareFileTime(&ft_time, &ft_end) <= 0;
}
bool IsBefore(SYSTEMTIME &time, SYSTEMTIME &start)
{
FILETIME ft_time, ft_start;
SystemTimeToFileTime(&time, &ft_time);
SystemTimeToFileTime(&start, &ft_start);
return CompareFileTime(&ft_time, &ft_start) < 0;
}
|