How to: Determine Battery Status

4/19/2010

The Windows Embedded CE GetSystemPowerStatusEx2 function can be called to return the SYSTEM_POWER_STATUS_EX2 structure. This structure contains important details about the power state of the device. Three of the most useful details in this structure are the ACLineStatus, BatteryFlag, and BatteryLifePercent members.

To produce accurate and complete information, device manufacturers must populate this data from their battery drivers, as shown in the following code:

SYSTEM_POWER_STATUS_EX2 wrstat = {0};
if (!GetSystemPowerStatusEx2(&wrstat, sizeof(wrstat), FALSE))
{
    MessageBox(hWnd,_T("Couldn't get power state"), 
              _T("Error"),MB_OK);
} 
else
{
// Extract the power status information you need.
}

See Also

Concepts

Handling Application Hibernation
Handling Low Memory States
How to: Determine Available Memory
Preventing Automatic Power Down
How to: Program an Application for Windows Mobile Standard to Turn the Backlight On or Off
How to: Suspend the Device
Managing Variables, Stacks, and Heaps on Windows Mobile Devices
Getting Memory Status and Processor Information
System Out of Memory Dialog Box

Other Resources

Memory and Power Management