What APIs are provided by Windows for CPU power management (I’m interested in CPU frequency scaling, setting min and max CPU frequency – similar to what you can do in Control Panel in power plans, but in a programmatic way). I’m also interested in .Net APIs. (It is not something I intend to use in a production environment, but rather as a proof of concept for some dynamic power management algorithms)
What APIs are provided by Windows for CPU power management (I’m interested in CPU
Share
The C++ Power Management APIs: http://msdn.microsoft.com/en-us/library/aa373170.aspx
.NET Power Management APIs are in the
Microsoft.Win32namespace.Example from http://msdn.microsoft.com/en-us/library/hxkc1kwd.aspx:
You can find lots more by poking around in that namespace.