GetPerformanceInfo

[DllImport("psapi.dll", SetLastError = true)]
public static extern bool GetPerformanceInfo(
   out PERFORMANCE_INFORMATION pPerformanceInformation,
   uint cb
);

Microsoft documentation: Linkarrow-up-right

Last updated