Changeset 64 for trunk/include/helpers
- Timestamp:
- Apr 26, 2001, 10:21:31 PM (24 years ago)
- Location:
- trunk/include/helpers
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/except.h
r41 r64 118 118 ********************************************************************/ 119 119 120 VOID _Optlink excExplainException(FILE *file, 121 PSZ pszHandlerName, 122 PEXCEPTIONREPORTRECORD pReportRec, 123 PCONTEXTRECORD pContextRec); 124 120 125 VOID excRegisterHooks(PFNEXCOPENFILE pfnExcOpenFileNew, 121 126 PFNEXCHOOK pfnExcHookNew, -
trunk/include/helpers/gpih.h
r56 r64 79 79 #define RGBCOL_DARKGRAY 0x00808080 80 80 81 VOID XWPENTRY gpihManipulateRGB(PLONG plColor, BYTE bMultiplier, BYTE bDivisor);82 typedef VOID XWPENTRY GPIHMANIPULATERGB(PLONG plColor, BYTE bMultiplier, BYTE bDivisor);81 VOID XWPENTRY gpihManipulateRGB(PLONG plColor, double dFactor); 82 typedef VOID XWPENTRY GPIHMANIPULATERGB(PLONG plColor, double dFactor); 83 83 typedef GPIHMANIPULATERGB *PGPIHMANIPULATERGB; 84 84 -
trunk/include/helpers/procstat.h
r57 r64 573 573 *@@ QS32EVENT: 574 574 * 575 *@@added V [umoeller]575 *@@added V0.9.10 (2001-04-08) [umoeller] 576 576 */ 577 577 -
trunk/include/helpers/ras.h
r7 r64 1 1 2 /* 2 3 *@@sourcefile ras.h: -
trunk/include/helpers/timer.h
r44 r64 1 1 2 /* 2 3 *@@sourcefile threads.h: -
trunk/include/helpers/xml.h
r39 r64 36 36 #define __SIMPLES_DEFINED 37 37 #endif 38 39 /* ****************************************************************** 40 * 41 * Error handling 42 * 43 ********************************************************************/ 38 44 39 45 typedef enum _DOMERROR … … 72 78 ERROR_DOM_NO_ELEMENT, 73 79 ERROR_DOM_DUPLICATE_DOCTYPE, 74 ERROR_DOM_DOCTYPE_ STRUCTURE,80 ERROR_DOM_DOCTYPE_ROOT_NAMES_MISMATCH, 75 81 // DOCTYPE is given and root element name does not match doctype name 76 82 ERROR_DOM_INTEGRITY, 77 ERROR_DOM_DUPLICATE_ATTRIBUTE 83 ERROR_DOM_DUPLICATE_ATTRIBUTE, 84 85 // @@@todo these 86 ERROR_DOM_VALIDATE_INVALID_ELEMENT, 87 ERROR_DOM_ELEMENT_DECL_OUTSIDE_DOCTYPE, 88 ERROR_DOM_ATTLIST_DECL_OUTSIDE_DOCTYPE 78 89 } DOMERROR; 90 91 const char* xmlDescribeError(int code); 79 92 80 93 /* ****************************************************************** … … 185 198 + --------------+-------------+--------------+------------+-------------- 186 199 + | | | | 187 + ELEMENT | tag name | 0 8| ELEMENT | ATTRIBUTE200 + ELEMENT | tag name | 0 | ELEMENT | ATTRIBUTE 188 201 + | | | nodes | nodes 189 202 + | | | | … … 306 319 307 320 VOID xmlDeleteNode(PNODEBASE pNode); 321 322 /* ****************************************************************** 323 * 324 * Specific DOM node constructors 325 * 326 ********************************************************************/ 327 328 APIRET xmlCreateElementNode(PDOMNODE pParent, 329 const char *pcszElement, 330 PDOMNODE *ppNew); 331 332 APIRET xmlCreateAttributeNode(PDOMNODE pElement, 333 const char *pcszName, 334 const char *pcszValue, 335 PDOMNODE *ppNew); 336 337 APIRET xmlCreateTextNode(PDOMNODE pParent, 338 const char *pcszText, 339 ULONG ulLength, 340 PDOMNODE *ppNew); 341 342 APIRET xmlCreateCommentNode(PDOMNODE pParent, 343 const char *pcszText, 344 PDOMNODE *ppNew); 345 346 APIRET xmlCreatePINode(PDOMNODE pParent, 347 const char *pcszTarget, 348 const char *pcszData, 349 PDOMNODE *ppNew); 350 351 APIRET xmlCreateDocumentTypeNode(PDOMDOCUMENTNODE pDocumentNode, 352 const char *pcszDoctypeName, 353 const char *pcszSysid, 354 const char *pcszPubid, 355 int fHasInternalSubset, 356 PDOMDOCTYPENODE *ppNew); 308 357 309 358 /* ****************************************************************** … … 541 590 } CMNOTATIONDECLNODE, *PCMNOTATIONDECLNODE; 542 591 592 APIRET xmlCreateElementDecl(const char *pcszName, 593 PXMLCONTENT pModel, 594 PCMELEMENTDECLNODE *ppNew); 595 543 596 /* ****************************************************************** 544 597 * … … 561 614 562 615 PDOMDOCUMENTNODE pDocumentNode; 616 // document node (contains all the elements) 563 617 564 618 PDOMDOCTYPENODE pDocTypeNode; … … 593 647 #define DF_PARSECOMMENTS 0x0001 594 648 #define DF_PARSEDTD 0x0002 649 #define DF_FAIL_IF_NO_DTD 0x0004 595 650 596 651 APIRET xmlCreateDOM(ULONG flParserFlags, … … 604 659 APIRET xmlFreeDOM(PXMLDOM pDom); 605 660 661 /* ****************************************************************** 662 * 663 * DOM lookup 664 * 665 ********************************************************************/ 666 606 667 PCMELEMENTDECLNODE xmlFindElementDecl(PXMLDOM pDom, 607 668 const XSTRING *pstrElementName); 608 669 609 670 PCMATTRIBUTEDECLBASE xmlFindAttribDeclBase(PXMLDOM pDom, 610 671 const XSTRING *pstrElementName); 611 672 612 673 PCMATTRIBUTEDECL xmlFindAttribDecl(PXMLDOM pDom, … … 615 676 PCMATTRIBUTEDECLBASE *ppAttribDeclBase); 616 677 678 PDOMNODE xmlGetRootElement(PXMLDOM pDom); 679 680 PDOMNODE xmlGetFirstChild(PDOMNODE pDomNode); 681 682 PDOMNODE xmlGetLastChild(PDOMNODE pDomNode); 683 684 PDOMNODE xmlGetFirstText(PDOMNODE pElement); 685 686 PLINKLIST xmlGetElementsByTagName(PDOMNODE pParent, 687 const char *pcszName); 688 689 const XSTRING* xmlGetAttribute(PDOMNODE pElement, 690 const char *pcszAttribName); 691 617 692 #endif 618 693 -
trunk/include/helpers/xprf.h
r14 r64 4 4 * header file for xprf.c. See remarks there. 5 5 * 6 * This file is new with V0.82.6 * This file was new with V0.9.5 (?). 7 7 * 8 8 * Note: Version numbering in this file relates to XWorkplace version -
trunk/include/helpers/xstring.h
r45 r64 116 116 ULONG ulFirstReplOfs, 117 117 ULONG cReplLen, 118 const XSTRING *pstrReplaceWith); 118 const char *pcszReplaceWith, 119 ULONG cReplaceWithLen); 119 120 typedef ULONG XWPENTRY XSTRRPL(PXSTRING pxstr, 120 121 ULONG ulFirstReplOfs, 121 122 ULONG cReplLen, 122 const XSTRING *pstrReplaceWith); 123 const char *pcszReplaceWith, 124 ULONG cReplaceWithLen); 123 125 typedef XSTRRPL *PXSTRRPL; 124 126
Note:
See TracChangeset
for help on using the changeset viewer.