Skip to content

Instantly share code, notes, and snippets.

@ezod
Created April 17, 2014 04:06
Show Gist options
  • Save ezod/10952141 to your computer and use it in GitHub Desktop.
Save ezod/10952141 to your computer and use it in GitHub Desktop.
#include <windows.h>
#include <iostream>
int main(int argc, char *argv[])
{
LASTINPUTINFO * lastInputInfo = new LASTINPUTINFO();
lastInputInfo->cbSize = sizeof(*lastInputInfo);
GetLastInputInfo(lastInputInfo);
std::cout << GetTickCount() - lastInputInfo->dwTime << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment