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
SAX callback for entity declarations.
@param ctx the user data (XML parser context) @param name the entity name @param type the entity type @param publicId The public ID of the entity @param systemId The system ID of the entity @param content the entity value (without processing).
Aliased Type§
pub enum entityDeclSAXFunc {
None,
Some(unsafe extern "C" fn(*mut c_void, *const u8, i32, *const u8, *const u8, *mut u8)),
}