xml_SetNotStandaloneHandler ( parserID; handler )
-
--> parserID : longint
-
--> handler : string[31]
This handler is called for documents which are not considered standalone XML documents by the parser. Setting the "standalone" attribute to "no" in the XML declaration does not cause this handler to be called. It is only called when external entity references are found in the document.
Unlike the other handlers, the notStandaloneHandler must return a value to tell Expat4D whether to continue parsing or not. The return value should be a longint with the value of 1 to continue parsing, or zero to force Expat4D to stop.
|
C_LONGINT($1;$parser)
C_LONGINT($0;$continueParsing)
$parser:=$1
$continueParsing:=1
$0:=$continueParsing
|
|
|
|
|