Re: Fwd: Pull parsing with Expat?
Karl Waclawek <[email protected]>
| Newsgroups | gmane.text.xml.expat.general |
|---|---|
| Message-ID | <[email protected]> |
Jonathan Claggett wrote: > > I'm interested to know how the wedge code would work. Would it use the > callbacks to call XML_PasrserStop? One thought I had was if there was a way > to make XML_Parse return each time a callback was called. That would be > sufficient for my goals. > XML_ParserStop() was added specifically to enable "pull" usage for Expat. It must be called from within a call-back handler. Karl