Type Alias xlinkExtendedLinkSetFunk

Source
pub type xlinkExtendedLinkSetFunk = Option<unsafe extern "C" fn(ctx: *mut c_void, node: xmlNodePtr, nbLocators: c_int, hrefs: *const xlinkHRef, roles: *const xlinkRole, nbTitles: c_int, titles: *const xlinkTitle, langs: *mut *const xmlChar)>;
Expand description

xlinkExtendedLinkSetFunk: @ctx: user data pointer @node: the node carrying the link @nbLocators: the number of locators detected on the link @hrefs: pointer to the array of locator hrefs @roles: pointer to the array of locator roles @nbTitles: the number of titles detected on the link @title: array of titles detected on the link @langs: array of xml:lang values for the titles

This is the prototype for a extended link set detection callback.

Aliased Type§

enum xlinkExtendedLinkSetFunk {
    None,
    Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _xmlNode, _: i32, _: *const *mut u8, _: *const *mut u8, _: i32, _: *const *mut u8, _: *mut *const u8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut c_void, _: *mut _xmlNode, _: i32, _: *const *mut u8, _: *const *mut u8, _: i32, _: *const *mut u8, _: *mut *const u8))

Some value of type T.