#[repr(C, packed(4))]pub struct MOUSE_ARG {
pub source_var: MODULE_VAR,
pub scale: FLOAT64,
pub numeric_table: *mut MOUSE_ARG_NUMERIC_MAP,
pub numeric_table_size: UINT,
pub id_table: *mut MOUSE_ARG_ID_MAP,
pub id_table_size: UINT,
pub string_table: *mut MOUSE_ARG_STRING_MAP,
pub string_table_size: UINT,
pub numeric_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> FLOAT64>,
pub id_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> ID>,
pub string_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> PCSTRINGZ>,
}
Fields§
§source_var: MODULE_VAR
§scale: FLOAT64
§numeric_table: *mut MOUSE_ARG_NUMERIC_MAP
§numeric_table_size: UINT
§id_table: *mut MOUSE_ARG_ID_MAP
§id_table_size: UINT
§string_table: *mut MOUSE_ARG_STRING_MAP
§string_table_size: UINT
§numeric_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> FLOAT64>
§id_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> ID>
§string_callback: Option<unsafe extern "C" fn(number: FLOAT64, id: ID, string: PCSTRINGZ, source_var: *mut MODULE_VAR, gauge: PGAUGEHDR) -> PCSTRINGZ>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for MOUSE_ARG
impl !Send for MOUSE_ARG
impl !Sync for MOUSE_ARG
impl Unpin for MOUSE_ARG
impl UnwindSafe for MOUSE_ARG
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more