Click to Rate and Give Feedback
MSDN
MSDN Library
System Services
PSAPI Reference
PSAPI Functions
 GetPerformanceInfo Function
GetPerformanceInfo Function

Retrieves the performance values contained in the PERFORMANCE_INFORMATION structure.

Syntax

C++
BOOL WINAPI GetPerformanceInfo(
  __out  PPERFORMANCE_INFORMATION pPerformanceInformation,
  __in   DWORD cb
);

Parameters

pPerformanceInformation [out]

A pointer to a PERFORMANCE_INFORMATION structure that receives the performance information.

cb [in]

The size of the PERFORMANCE_INFORMATION structure, in bytes.

Return Value

If the function succeeds, the return value is TRUE. If the function fails, the return value is FALSE. To get extended error information, call GetLastError.

Remarks

Starting with Windows 7 and Windows Server 2008 R2, Psapi.h establishes version numbers for the PSAPI functions. The PSAPI version number affects the name used to call the function and the library that a program must load.

If PSAPI_VERSION is 2 or greater, this function is defined as K32GetPerformanceInfo in Psapi.h and exported in Kernel32.lib and Kernel32.dll. If PSAPI_VERSION is 1, this function is defined as GetPerformanceInfo in Psapi.h and exported in Psapi.lib and Psapi.dll as a wrapper that calls K32GetPerformanceInfo.

Programs that must run on earlier versions of Windows as well as Windows 7 and later versions should always call this function as GetPerformanceInfo. To ensure correct resolution of symbols, add Psapi.lib to the TARGETLIBS macro and compile the program with –DPSAPI_VERSION=1. To use run-time dynamic linking, load Psapi.dll.

Requirements

Minimum supported clientWindows XP
Minimum supported serverWindows Server 2003
HeaderPsapi.h
LibraryKernel32.lib on Windows 7 and Windows Server 2008 R2, Psapi.lib if PSAPI_VERSION=1 on Windows 7 and Windows Server 2008 R2, Psapi.lib on Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP/2000
DLLKernel32.dll on Windows 7 and Windows Server 2008 R2, Psapi.dll if PSAPI_VERSION=1 on Windows 7 and Windows Server 2008 R2, Psapi.dll on Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP/2000

See Also

Memory Performance Information
PERFORMANCE_INFORMATION
PSAPI Functions

Send comments about this topic to Microsoft

Build date: 11/19/2009

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker