Struct ts3plugin_sys::public_definitions::VariablesExportItem
[−]
[src]
#[repr(C)]pub struct VariablesExportItem { pub item_is_valid: u8, pub proposed_is_set: u8, pub current: *const c_char, pub proposed: *const c_char, }
Some structs to handle variables in callbacks
Fields
item_is_valid: u8
This item has valid values. ignore this item if 0
proposed_is_set: u8
The value in proposed is set. if 0 ignore proposed
current: *const c_char
Current value (stored in memory)
proposed: *const c_char
New value to change to (const, so no updates please)