Changeset 11 for trunk/src/helpers/xml.c


Ignore:
Timestamp:
Oct 31, 2000, 8:43:30 PM (25 years ago)
Author:
umoeller
Message:

Updates for new xwphelpers plus others.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/xml.c

    r10 r11  
    5757 */
    5858
     59#define OS2EMX_PLAIN_CHAR
     60    // this is needed for "os2emx.h"; if this is defined,
     61    // emx will define PSZ as _signed_ char, otherwise
     62    // as unsigned char
     63
     64#define INCL_DOSERRORS
     65#include <os2.h>
     66
    5967#include <stdlib.h>
    6068#include <string.h>
    61 
    62 #include <os2.h>
    6369
    6470#include "setup.h"                      // code generation and debugging options
     
    547553                        PDOMNODE pParentNode,
    548554                        PFNVALIDATE pfnValidateTag,
    549                         const char **ppError);
     555                        const char **ppError)
    550556{
    551557    ULONG ulrc = 0;
     
    726732                                                              pllSubList,
    727733                                                              pNewNode,
    728                                                               pfnValidateTag),
     734                                                              pfnValidateTag,
     735                                                              ppError);
    729736
    730737                                            lstFree(pllSubList);
     
    838845    ULONG   ulrc = 0;
    839846
    840     const char *pSearchPos = pcszBuf;
    841 
    842847    PLINKLIST pllTags = BuildTagsList(pcszBuf);
    843848
    844849    // now create DOMNODE's according to that list...
     850    const char *pcszError = 0;
    845851    CreateNodesForBuf(pcszBuf,
    846852                      NULL,     // enitre buffer
    847853                      pllTags,
    848854                      pParentNode,
    849                       pfnValidateTag);
     855                      pfnValidateTag,
     856                      &pcszError);
    850857
    851858    lstFree(pllTags);
Note: See TracChangeset for help on using the changeset viewer.