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 Structures, prefix the name with the module name and a period.
SYSTEM_POWER_LEVEL (Structures)
.
C# Definition:
[StructLayout(LayoutKind.Sequential, Pack=1)]
struct SYSTEM_POWER_LEVEL {
public bool Enable;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
public byte[] Spare;
public uint BatteryLevel;
public POWER_ACTION_POLICY PowerPolicy;
public PowerActionPolicy PowerPolicy;
public SYSTEM_POWER_STATE MinSystemState;
}
VB Definition:
<StructLayout(LayoutKind.Sequential, Pack:=1)>
<StructLayout(LayoutKind.Sequential, Pack=1)>
Structure SYSTEM_POWER_LEVEL
Public Enable As Boolean
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=3)>
<MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)>
Public Spare As Byte()
Public BatteryLevel As Integer
Public PowerPolicy As POWER_ACTION_POLICY
Public MinSystemState As SYSTEM_POWER_STATE
End Structure