Mehdi Hosseinzadeh
Mehdi Hosseinzadeh

Reputation: 1161

How to get process relative time

Is there any way to get the process's execution time without using GetTickCount and System Time inside a C++ application?

Upvotes: 1

Views: 382

Answers (1)

Remy Lebeau
Remy Lebeau

Reputation: 595402

Look at the GetProcessTimes() function.

Upvotes: 3

Related Questions