XML_SetElementHandlerΒΆ
- bool = XML_SetElementHandler(hParser, start, end)
Return Value
bool is always 1.
Parameters
- hParser
hParser is the handle of a parser.
- start
start is the name of a UniScript function with the following parameter list:
def startElementHandler(hParser, name, atts) { }
- end
end:
def endElementHandler(hParser, name) { }
See also
id-1285734