XML_SetDefaultHandlerΒΆ

XML_SetDefaultHandler sets a handler for any characters in the document which would not otherwise be handled.

bool = XML_SetDefaultHandler(hParser, handler)

Return Value

bool is always 1.

Parameters

hParser

hParser is the handle of a parser.

handler

handler is the name of a UniScript function with the following parameter list:

def defaultHandler(hParser, data)
{
}

See also

Overview XML

id-416278