pub type internalSubsetSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, ExternalID: *const xmlChar, SystemID: *const xmlChar)>;Expand description
internalSubsetSAXFunc: @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 internal subset declaration.
Aliased Type§
enum internalSubsetSAXFunc {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: *const u8, _: *const u8, _: *const u8)),
}