Web Development
xmlsax2.txt
Associated article: The Delphi XML SAX2 Component & MSXML 3.0
Tags: Web Development
Published source code accompanying the article by Danny Heijl in which he presents TSAXParser, a Delphi component which uses the SAX2 and XML interfaces, but shields you from their complexities. Also see XMLSAX2.ZIP.
The Delphi XML SAX2 Component & MSXML 3.0
by Danny Heijl
Example 1:
(a)
HRESULT _stdcall characters(
[in] unsigned short* pwchChars,
[in] int cchChars);
(b)
HRESULT characters(
[in] const wchar_t * pwchChars,
[in] int cchChars);
(c)
function characters(
var pwchChars: Word; // * WRONG * //
...


