I am unaware of a win32 api function/functions used to query the local PC processor’s current speed. I wish not to use WMI because it seems unlikely to be feasible on all PCs.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can (usually) get the processor speed using the
QueryPerformanceFrequencyfunction. I’m saying “usually” since this function returns the frequency of the performance timer component of the system, but virtually all current CPU’s available operate at the same frequency as the performance timer component.This function is available since Windows 2000, so chances are good that it’s supported on most of todays PCs.