win32 api function to get processor's current speed

后端 未结 4 805
温柔的废话
温柔的废话 2020-12-16 18:51

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 P

相关标签:
4条回答
  • 2020-12-16 19:13

    A simple google search brought me to this page, which looks like it has 2 different ways to do exactly what you're looking for.

    0 讨论(0)
  • 2020-12-16 19:16

    You can call the Windows API function CallNtPowerInformation with the argument ProcessorInformation. It returns a PROCESSOR_POWER_INFORMATION structure which tells you the current and max CPU speed for each of your system's CPUs.

    This is only supported on Win32 desktop, not Metro or Windows Phone, though.

    0 讨论(0)
  • 2020-12-16 19:27

    You read it from the registry using the usual registry functions

    0 讨论(0)
  • 2020-12-16 19:31

    You can (usually) get the processor speed using the QueryPerformanceFrequency function. 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.

    0 讨论(0)
提交回复
热议问题