Type Alias WatchItemRecord

Source
pub type WatchItemRecord = watchItemRecord;

Aliased Type§

struct WatchItemRecord {
    pub name: *const i8,
    pub flag: *mut bool,
    pub code: i32,
    pub priority: i32,
    pub accessFunc: Option<unsafe extern "C" fn(_: *mut environmentData, _: i32, _: bool, _: *mut expr) -> bool>,
    pub printFunc: Option<unsafe extern "C" fn(_: *mut environmentData, _: *const i8, _: i32, _: *mut expr) -> bool>,
    pub next: *mut watchItemRecord,
}

Fields§

§name: *const i8§flag: *mut bool§code: i32§priority: i32§accessFunc: Option<unsafe extern "C" fn(_: *mut environmentData, _: i32, _: bool, _: *mut expr) -> bool>§printFunc: Option<unsafe extern "C" fn(_: *mut environmentData, _: *const i8, _: i32, _: *mut expr) -> bool>§next: *mut watchItemRecord