pub type LEAP_LOG_EVENT = _LEAP_LOG_EVENT;Expand description
\ingroup Structs A system log message. @since 3.0.0
Aliased Type§
#[repr(C, packed(1))]pub struct LEAP_LOG_EVENT {
pub severity: i32,
pub timestamp: i64,
pub message: *const i8,
}Fields§
§severity: i32The type of message. @since 4.0.0
timestamp: i64The timestamp of the message in microseconds. Compare with the current values of LeapGetNow() and the system clock to calculate the absolute time of the message. @since 4.0.0
message: *const i8A pointer to a null-terminated string containing the current log message. @since 4.0.0