Changeset 11 for trunk/src/helpers/xml.c
- Timestamp:
- Oct 31, 2000, 8:43:30 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/xml.c
r10 r11 57 57 */ 58 58 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 59 67 #include <stdlib.h> 60 68 #include <string.h> 61 62 #include <os2.h>63 69 64 70 #include "setup.h" // code generation and debugging options … … 547 553 PDOMNODE pParentNode, 548 554 PFNVALIDATE pfnValidateTag, 549 const char **ppError) ;555 const char **ppError) 550 556 { 551 557 ULONG ulrc = 0; … … 726 732 pllSubList, 727 733 pNewNode, 728 pfnValidateTag), 734 pfnValidateTag, 735 ppError); 729 736 730 737 lstFree(pllSubList); … … 838 845 ULONG ulrc = 0; 839 846 840 const char *pSearchPos = pcszBuf;841 842 847 PLINKLIST pllTags = BuildTagsList(pcszBuf); 843 848 844 849 // now create DOMNODE's according to that list... 850 const char *pcszError = 0; 845 851 CreateNodesForBuf(pcszBuf, 846 852 NULL, // enitre buffer 847 853 pllTags, 848 854 pParentNode, 849 pfnValidateTag); 855 pfnValidateTag, 856 &pcszError); 850 857 851 858 lstFree(pllTags);
Note:
See TracChangeset
for help on using the changeset viewer.