SysEvent_Status Enum
Header: #include <applibs/sysevent.h>
The status of a system event.
typedef uint32_t SysEvent_Status;
enum {
SysEvent_Status_Invalid = 0,
SysEvent_Status_Pending = 1,
SysEvent_Status_Final = 2,
SysEvent_Status_Deferred = 3,
SysEvent_Status_Complete = 4
};
Members
SysEvent_Status_Invalid
The status was improperly initialized.
SysEvent_Status_Pending
A 10-second warning that an event will occur, with the opportunity to defer the event.
SysEvent_Status_Final
A 10-second warning that an event will occur, without the opportunity to defer the event.
SysEvent_Status_Deferred
The previous pending event was deferred, and will occur at a later time.
SysEvent_Status_Complete
The system event is complete. For software update events, this status is sent only for application updates because OS updates require a device reboot to complete.