Ignore:
Timestamp:
Jul 8, 2002, 6:53:23 PM (23 years ago)
Author:
umoeller
Message:

Misc updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/xml.h

    r186 r187  
    638638
    639639    /*
     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    /*
    640671     *@@ XMLDOM:
    641672     *      DOM instance returned by xmlCreateDOM.
     
    681712        PFNEXTERNALHANDLER pfnExternalHandler;
    682713        PVOID           pvCallbackUser;
     714        const STATICSYSTEMID *paSystemIds;
     715        ULONG           cSystemIds;
    683716
    684717        XML_Parser      pParser;
     
    702735
    703736    APIRET xmlCreateDOM(ULONG flParserFlags,
     737                        const STATICSYSTEMID *paSystemIds,
     738                        ULONG cSystemIds,
    704739                        PFNGETCPDATA pfnGetCPData,
    705740                        PFNEXTERNALHANDLER pfnExternalHandler,
Note: See TracChangeset for help on using the changeset viewer.