I want to get difference between two SYSTEMTIME variable. I saw someone asked this question here before, but he was told to convert both SYSTEMTIME structures to FILETIME.. Is there another way to get the difference?
SYSTEMTIME st;
GetSystemTime(&st);
---some code here---
SYSTEMTIME st2;
GetSystemTime(&st2);
st-st2?
SYSTEMTIME
toFILETIME
? – Ashy