pub type LEAP_CONFIG_CHANGE_EVENT = _LEAP_CONFIG_CHANGE_EVENT;Expand description
\ingroup Structs The result of a configuration change request. Contains a status of true for a successful change. Call LeapSaveConfigValue() to request a service config change. The change is performed asynchronously – and may fail. LeapPollConnection() returns this event structure when the request has been processed. Use the requestID value to correlate the response to the originating request. @returns The operation result code, a member of the eLeapRS enumeration. @since 3.0.0
Aliased Type§
#[repr(C, packed(1))]pub struct LEAP_CONFIG_CHANGE_EVENT {
pub requestID: u32,
pub status: bool,
}Fields§
§requestID: u32An identifier for correlating the request and response. @since 3.0.0
status: boolThe result of the change operation: true on success; false on failure. @since 3.0.0