pub type entityDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, type_: c_int, publicId: *const xmlChar, systemId: *const xmlChar, content: *mut xmlChar)>;Expand description
entityDeclSAXFunc: @ctx: the user data (XML parser context) @name: the entity name @type: the entity type @publicId: The public ID of the entity @systemId: The system ID of the entity @content: the entity value (without processing).
An entity definition has been parsed.
Aliased Type§
pub enum entityDeclSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, i32, *const u8, *const u8, *mut u8)),
}