How to get the last windows active time by windows api

winapi

In general, the Screensaver will run when we do nothing for a period of time.
Now i wanna know how to get the unactive time.
In another word,i want to make a program which would run a function if we do nothing for a period of time.
Now i can use mouse or keyboard hook to solve the problem.
But you know,it needs administrator permissions. In another word,if in win vista or win 7,it is nauseating because of the UAC.
I need an API such to get last windows active time.

Best Answer

The CallNtPowerInformation() API is to get the last power information
I should use GetLastInputInfo()

Related Topic