xmlreslt.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
- /* ***** BEGIN LICENSE BLOCK *****
- * Version: RCSL 1.0/RPSL 1.0
- *
- * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
- *
- * The contents of this file, and the files included with this file, are
- * subject to the current version of the RealNetworks Public Source License
- * Version 1.0 (the "RPSL") available at
- * http://www.helixcommunity.org/content/rpsl unless you have licensed
- * the file under the RealNetworks Community Source License Version 1.0
- * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl,
- * in which case the RCSL will apply. You may also obtain the license terms
- * directly from RealNetworks. You may not use this file except in
- * compliance with the RPSL or, if you have a valid RCSL with RealNetworks
- * applicable to this file, the RCSL. Please see the applicable RPSL or
- * RCSL for the rights, obligations and limitations governing use of the
- * contents of the file.
- *
- * This file is part of the Helix DNA Technology. RealNetworks is the
- * developer of the Original Code and owns the copyrights in the portions
- * it created.
- *
- * This file, and the files included with this file, is distributed and made
- * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
- *
- * Technology Compatibility Kit Test Suite(s) Location:
- * http://www.helixcommunity.org/content/tck
- *
- * Contributor(s):
- *
- * ***** END LICENSE BLOCK ***** */
- #ifndef _XMLRESLT_H_
- #define _XMLRESLT_H_
- #define HXR_XML_GENERALERROR MAKE_HX_RESULT(1,SS_XML,0)
- #define HXR_XML_BADENDTAG MAKE_HX_RESULT(1,SS_XML,1)
- #define HXR_XML_NOCLOSE MAKE_HX_RESULT(1,SS_XML,2)
- #define HXR_XML_BADATTRIBUTE MAKE_HX_RESULT(1,SS_XML,3)
- #define HXR_XML_NOVALUE MAKE_HX_RESULT(1,SS_XML,4)
- #define HXR_XML_MISSINGQUOTE MAKE_HX_RESULT(1,SS_XML,5)
- #define HXR_XML_NOTAGTYPE MAKE_HX_RESULT(1,SS_XML,6)
- #define HXR_XML_ILLEGALID MAKE_HX_RESULT(1,SS_XML,7)
- #define HXR_XML_DUPATTRIBUTE MAKE_HX_RESULT(1,SS_XML,8)
- #define HXR_XML_COMMENT_B4_PROCINST MAKE_HX_RESULT(1,SS_XML,9)
- /* There are a couple of dupplicate errors here... We will keep them separate
- to make management of the expat parser simpler. */
- #define HXR_XML_SYNTAX MAKE_HX_RESULT(1,SS_XML,11)
- #define HXR_XML_NO_ELEMENTS MAKE_HX_RESULT(1,SS_XML,12)
- /* We removed HXR_XML_INVALID_TOKEN ... replaced it with the errors in the 100's
- down below. - when josh updates code to use new errors */
- #define HXR_XML_INVALID_TOKEN MAKE_HX_RESULT(1,SS_XML,13)
- #define HXR_XML_UNCLOSED_TOKEN MAKE_HX_RESULT(1,SS_XML,14)
- #define HXR_XML_PARTIAL_CHAR MAKE_HX_RESULT(1,SS_XML,15)
- #define HXR_XML_TAG_MISMATCH MAKE_HX_RESULT(1,SS_XML,16)
- // will use HXR_XML_DUPATTRIBUTE instead - when josh updates code to use new errors
- #define HXR_XML_DUPLICATE_ATTRIBUTE MAKE_HX_RESULT(1,SS_XML,17)
- #define HXR_XML_JUNK_AFTER_DOC_ELEMENT MAKE_HX_RESULT(1,SS_XML,18)
- #define HXR_XML_PARAM_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,19)
- #define HXR_XML_UNDEFINED_ENTITY MAKE_HX_RESULT(1,SS_XML,20)
- #define HXR_XML_RECURSIVE_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,21)
- #define HXR_XML_ASYNC_ENTITY MAKE_HX_RESULT(1,SS_XML,22)
- #define HXR_XML_BAD_CHAR_REF MAKE_HX_RESULT(1,SS_XML,23)
- #define HXR_XML_BINARY_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,24)
- #define PNR_XML_ATTRIBUTE_EXTEHXAL_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,25)
- #define HXR_XML_MISPLACED_XML_PI MAKE_HX_RESULT(1,SS_XML,26)
- #define HXR_XML_UNKNOWN_ENCODING MAKE_HX_RESULT(1,SS_XML,27)
- #define HXR_XML_INCORRECT_ENCODING MAKE_HX_RESULT(1,SS_XML,28)
- #define HXR_XML_UNCLOSED_CDATA_SECTION MAKE_HX_RESULT(1,SS_XML,29)
- #define PNR_XML_EXTEHXAL_ENTITY_HANDLING MAKE_HX_RESULT(1,SS_XML,30)
- #define HXR_XML_NOT_STANDALONE MAKE_HX_RESULT(1,SS_XML,31)
- #define HXR_XML_INVALID_NAME MAKE_HX_RESULT(1,SS_XML,100)
- #define HXR_XML_INVALID_CHAR_IN_DOC MAKE_HX_RESULT(1,SS_XML,101)
- #define HXR_XML_TWO_DASHES_NOT_ALLOWED_IN_COMMENT MAKE_HX_RESULT(1,SS_XML,102)
- #define HXR_XML_INVALID_DECL MAKE_HX_RESULT(1,SS_XML,103)
- #define HXR_XML_INVALID_PI MAKE_HX_RESULT(1,SS_XML,104)
- #define HXR_XML_INVALID_PI_TARGET MAKE_HX_RESULT(1,SS_XML,105)
- #define HXR_XML_INVALID_CDATA MAKE_HX_RESULT(1,SS_XML,106)
- #define HXR_XML_NO_CLOSING_GT MAKE_HX_RESULT(1,SS_XML,107)
- #define HXR_XML_INVALID_HEX_CHAR_REF MAKE_HX_RESULT(1,SS_XML,108)
- #define HXR_XML_INVALID_CHAR_REF MAKE_HX_RESULT(1,SS_XML,109)
- #define HXR_XML_INVALID_REF MAKE_HX_RESULT(1,SS_XML,110)
- #define HXR_XML_MISSING_EQUALS MAKE_HX_RESULT(1,SS_XML,111)
- // will use HXR_XML_MISSINGQUOTE
- //#define HXR_XML_MISSING_QUOT_APOS MAKE_HX_RESULT(1,SS_XML,112)
- #define HXR_XML_MISSING_REQ_SPACE MAKE_HX_RESULT(1,SS_XML,113)
- #define HXR_XML_LT_NOT_ALLOWED MAKE_HX_RESULT(1,SS_XML,114)
- #define HXR_XML_EXPECTED_GT MAKE_HX_RESULT(1,SS_XML,115)
- #define HXR_XML_INVALID_GT_AFFT_2_RSQB_IN_CONTENT MAKE_HX_RESULT(1,SS_XML,116)
- #define HXR_XML_INVALID_COMMENT MAKE_HX_RESULT(1,SS_XML,117)
- #endif /* _XMLRESLT_H */