Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than coredll, prefix the name with the module name and a period.
SYSTEM_POWER_STATUS_EX (coredll)
coredll is for smart devices, not desktop Windows. Therefore, this information only applies to code using the .NET Compact Framework. To see if information for SYSTEM_POWER_STATUS_EX in other DLLs exists, click on Find References to the right.
.
C# Definition:
[StructLayout(LayoutKind.Sequential)]
internal class SYSTEM_POWER_STATUS_EX
{
public byte ACLineStatus = 0;
public byte BatteryFlag = 0;
public byte BatteryLifePercent = 0;
public byte Reserved1 = 0;
public uint BatteryLifeTime = 0;
public uint BatteryFullLifeTime = 0;
public byte Reserved2 = 0;
public byte BackupBatteryFlag = 0;
public byte BackupBatteryLifePercent = 0;
public byte Reserved3 = 0;
public uint BackupBatteryLifeTime = 0;
public uint BackupBatteryFullLifeTime = 0;
public BYTE ACLineStatus = 0;
public BYTE BatteryFlag = 0;
public BYTE BatteryLifePercent = 0;
public BYTE Reserved1 = 0;
public DWORD BatteryLifeTime = 0;
public DWORD BatteryFullLifeTime = 0;
public BYTE Reserved2 = 0;
public BYTE BackupBatteryFlag = 0;
public BYTE BackupBatteryLifePercent = 0;
public BYTE Reserved3 = 0;
public DWORD BackupBatteryLifeTime = 0;
public DWORD BackupBatteryFullLifeTime = 0;
}
VB Definition:
Structure SYSTEM_POWER_STATUS_EX
Public ACLineStatus As Byte
Public BatteryFlag As Byte
Public BatteryLifePercent As Byte
Public Reserved1 As Byte
Public BatteryLifeTime As Int32
Public BatteryFullLifeTime As Int32
Public BatteryLifeTime As Int16
Public BatteryFullLifeTime As Int16
Public Reserved2 As Byte
Public BatteryBackupFlag As Byte
Public BackupBatteryLifePercent As Byte
Public BackupBatteryLifeTime As Byte
Public Reserved3 As Byte
Public BackupBatteryLifeTime As Int32
Public BackupBatteryFullLifeTime As Int32
Public BackupBatteryLifePercent As Byte
Public BackupBatteryFullLifeTime As Byte
End Structure
Percentage of full battery charge remaining. This member can be a value in the range 0 to 100, or 255 if status is unknown. All other values are reserved.
Number of seconds of backup battery life when at full charge, or BATTERY_LIFE_UNKNOWN if full lifetime is unknown.
TODO - a short description
3/16/2007 7:37:16 AM - -80.172.27.9
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).