#[repr(C)]
pub struct GActionEntry {
pub name: *const c_char,
pub activate: Option<unsafe extern fn(_: *mut GSimpleAction, _: *mut GVariant, _: gpointer)>,
pub parameter_type: *const c_char,
pub state: *const c_char,
pub change_state: Option<unsafe extern fn(_: *mut GSimpleAction, _: *mut GVariant, _: gpointer)>,
// some fields omitted
}
Fields
name: *const c_char
activate: Option<unsafe extern fn(_: *mut GSimpleAction, _: *mut GVariant, _: gpointer)>
parameter_type: *const c_char
state: *const c_char
change_state: Option<unsafe extern fn(_: *mut GSimpleAction, _: *mut GVariant, _: gpointer)>