Function SCDynamicStoreSetMultiple

Source
pub unsafe extern "C-unwind" fn SCDynamicStoreSetMultiple(
    store: Option<&SCDynamicStore>,
    keys_to_set: Option<&CFDictionary>,
    keys_to_remove: Option<&CFArray>,
    keys_to_notify: Option<&CFArray>,
) -> bool
Available on crate feature SCDynamicStore only.
Expand description

Updates multiple values in the dynamic store.

Parameter store: The dynamic store session.

Parameter keysToSet: A dictionary of key-value pairs you want to set into the dynamic store.

Parameter keysToRemove: An array of keys you want to remove from the dynamic store.

Parameter keysToNotify: An array of keys to flag as changed (without changing their values).

Returns: Returns TRUE if the dynamic store updates were successful; FALSE if an error was encountered.