Reputation: 1161
Is there any way to get the process's execution time without using GetTickCount and System Time inside a C++ application?
GetTickCount
System Time
Upvotes: 1
Views: 382
Reputation: 595402
Look at the GetProcessTimes() function.
GetProcessTimes()
Upvotes: 3