I have Windows system and I wuld like to get start/run process time. This code is get process list.
hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
Entry.dwSize = sizeof(Entry);
Process32First(hSnapshot, &Entry);
do
{
//do something
}
while (Process32Next(hSnapshot, &Entry));
What can I do to get start/run process time?