Tcl_CmdProc

Type Alias Tcl_CmdProc 

Source
pub type Tcl_CmdProc = Option<unsafe extern "C" fn(clientData: ClientData, interp: *mut Tcl_Interp, argc: c_int, argv: *mut *const c_char) -> c_int>;

Aliased Type§

pub enum Tcl_CmdProc {
    None,
    Some(unsafe extern "C" fn(*mut c_void, *mut Tcl_Interp, i32, *mut *const i8) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void, *mut Tcl_Interp, i32, *mut *const i8) -> i32)

Some value of type T.