xml_SetDefaultHandler ( parserID; handler )
-
--> parserID : longint
-
--> handler : string[31]
This handler is called for any part of the XML which is not handled by other handlers. So, if you set up handlers for elements and the default handler, the default handler will receive as a seperate blocks of text, each other part of the document, e.g. CDATA, Processing instructions, etc. The default handler method is pass just the parserID and the text being handled.
|
C_LONGINT($1;$parser)
C_TEXT($2;$data)
$parser:=$1
$data:=$2
|
|
|
|
|