#ifndef _NTRTL_H
// ros
typedef struct _RTL_BSD_DATA_POWER_TRANSITION
{
LARGE_INTEGER PowerButtonTimestamp;
struct
{
BOOLEAN SystemRunning : 1;
BOOLEAN ConnectedStandbyInProgress : 1;
BOOLEAN UserShutdownInProgress : 1;
BOOLEAN SystemShutdownInProgress : 1;
BOOLEAN SleepInProgress : 4;
} Flags;
UCHAR ConnectedStandbyScenarioInstanceId;
UCHAR ConnectedStandbyEntryReason;
UCHAR ConnectedStandbyExitReason;
USHORT SystemSleepTransitionCount;
LARGE_INTEGER LastReferenceTime;
ULONG LastReferenceTimeChecksum;
ULONG LastUpdateBootId;
} RTL_BSD_DATA_POWER_TRANSITION, *PRTL_BSD_DATA_POWER_TRANSITION;
View code on GitHub
No description available.