Type Definition libxml::bindings::unparsedEntityDeclSAXFunc[][src]

type unparsedEntityDeclSAXFunc = Option<unsafe extern "C" fn(ctx: *mut c_void, name: *const xmlChar, publicId: *const xmlChar, systemId: *const xmlChar, notationName: *const xmlChar)>;

unparsedEntityDeclSAXFunc: @ctx: the user data (XML parser context) @name: The name of the entity @publicId: The public ID of the entity @systemId: The system ID of the entity @notationName: the name of the notation

What to do when an unparsed entity declaration is parsed.