Changeset 187 for trunk/include/helpers/xml.h
- Timestamp:
- Jul 8, 2002, 6:53:23 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/xml.h
r186 r187 638 638 639 639 /* 640 *@@ STATICSYSTEMID: 641 * specification of a supported static system 642 * ID, which is most helpful with predefined 643 * DTD's. 644 * 645 * An array of this structure can be passed to 646 * xmlCreateDOM to avoid having to supply an 647 * external entity reference callback. 648 * 649 * This has one system ID with a corresponding 650 * contents (normally a DTD) so the 651 * implementation's external entity handler can 652 * parse the doctype automatically. 653 * 654 *@@added V0.9.20 (2002-07-06) [umoeller] 655 */ 656 657 typedef struct _STATICSYSTEMID 658 { 659 PCSZ pcszSystemId; 660 // possible system ID specified in DTD, e.g. "warpin.dtd" 661 // (without quotes) 662 663 PCSZ pcszContent; 664 // corresponding external DTD subset without square brackets, 665 // e.g. "<!ELEMENT job EMPTY >\n" 666 // (without quotes) 667 668 } STATICSYSTEMID, *PSTATICSYSTEMID; 669 670 /* 640 671 *@@ XMLDOM: 641 672 * DOM instance returned by xmlCreateDOM. … … 681 712 PFNEXTERNALHANDLER pfnExternalHandler; 682 713 PVOID pvCallbackUser; 714 const STATICSYSTEMID *paSystemIds; 715 ULONG cSystemIds; 683 716 684 717 XML_Parser pParser; … … 702 735 703 736 APIRET xmlCreateDOM(ULONG flParserFlags, 737 const STATICSYSTEMID *paSystemIds, 738 ULONG cSystemIds, 704 739 PFNGETCPDATA pfnGetCPData, 705 740 PFNEXTERNALHANDLER pfnExternalHandler,
Note:
See TracChangeset
for help on using the changeset viewer.