pub type externalSubsetSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, ExternalID: *const xmlChar, SystemID: *const xmlChar)>;Expand description
externalSubsetSAXFunc: @ctx: the user data (XML parser context) @name: the root element name @ExternalID: the external ID @SystemID: the SYSTEM ID (e.g. filename or URL)
Callback on external subset declaration.
Aliased Type§
pub enum externalSubsetSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, *const u8, *const u8)),
}