Hello,
Would GetTickCount be replaced by QueryPerformanceCounter to avoid false positive malware detection?
{Returns the number of milliseconds that have elapsed since the system was started. Note that this wraps back to 0
after 49.7 days.}
function OS_GetMillisecondsSinceStartup: Cardinal;
begin
Result := Winapi.Windows.GetTickCount;
end;
Best regards.
Hello,
Would GetTickCount be replaced by QueryPerformanceCounter to avoid false positive malware detection?
Best regards.