xmlreslt.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _XMLRESLT_H_
  36. #define _XMLRESLT_H_
  37. #define HXR_XML_GENERALERROR   MAKE_HX_RESULT(1,SS_XML,0)
  38. #define HXR_XML_BADENDTAG MAKE_HX_RESULT(1,SS_XML,1)
  39. #define HXR_XML_NOCLOSE MAKE_HX_RESULT(1,SS_XML,2)
  40. #define HXR_XML_BADATTRIBUTE MAKE_HX_RESULT(1,SS_XML,3)
  41. #define HXR_XML_NOVALUE MAKE_HX_RESULT(1,SS_XML,4)
  42. #define HXR_XML_MISSINGQUOTE MAKE_HX_RESULT(1,SS_XML,5)
  43. #define HXR_XML_NOTAGTYPE MAKE_HX_RESULT(1,SS_XML,6)
  44. #define HXR_XML_ILLEGALID MAKE_HX_RESULT(1,SS_XML,7)
  45. #define HXR_XML_DUPATTRIBUTE MAKE_HX_RESULT(1,SS_XML,8)
  46. #define HXR_XML_COMMENT_B4_PROCINST MAKE_HX_RESULT(1,SS_XML,9)
  47. /* There are a couple of dupplicate errors here... We will keep them separate
  48.    to make management of the expat parser simpler. */
  49. #define HXR_XML_SYNTAX MAKE_HX_RESULT(1,SS_XML,11)
  50. #define HXR_XML_NO_ELEMENTS MAKE_HX_RESULT(1,SS_XML,12)
  51. /* We removed HXR_XML_INVALID_TOKEN ... replaced it with the errors in the 100's
  52.    down below. - when josh updates code to use new errors */
  53. #define HXR_XML_INVALID_TOKEN MAKE_HX_RESULT(1,SS_XML,13)
  54. #define HXR_XML_UNCLOSED_TOKEN MAKE_HX_RESULT(1,SS_XML,14)
  55. #define HXR_XML_PARTIAL_CHAR MAKE_HX_RESULT(1,SS_XML,15)
  56. #define HXR_XML_TAG_MISMATCH MAKE_HX_RESULT(1,SS_XML,16)
  57. // will use HXR_XML_DUPATTRIBUTE instead - when josh updates code to use new errors
  58. #define HXR_XML_DUPLICATE_ATTRIBUTE MAKE_HX_RESULT(1,SS_XML,17)
  59. #define HXR_XML_JUNK_AFTER_DOC_ELEMENT MAKE_HX_RESULT(1,SS_XML,18)
  60. #define HXR_XML_PARAM_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,19)
  61. #define HXR_XML_UNDEFINED_ENTITY MAKE_HX_RESULT(1,SS_XML,20)
  62. #define HXR_XML_RECURSIVE_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,21)
  63. #define HXR_XML_ASYNC_ENTITY MAKE_HX_RESULT(1,SS_XML,22)
  64. #define HXR_XML_BAD_CHAR_REF MAKE_HX_RESULT(1,SS_XML,23)
  65. #define HXR_XML_BINARY_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,24)
  66. #define PNR_XML_ATTRIBUTE_EXTEHXAL_ENTITY_REF MAKE_HX_RESULT(1,SS_XML,25)
  67. #define HXR_XML_MISPLACED_XML_PI MAKE_HX_RESULT(1,SS_XML,26)
  68. #define HXR_XML_UNKNOWN_ENCODING MAKE_HX_RESULT(1,SS_XML,27)
  69. #define HXR_XML_INCORRECT_ENCODING MAKE_HX_RESULT(1,SS_XML,28)
  70. #define HXR_XML_UNCLOSED_CDATA_SECTION MAKE_HX_RESULT(1,SS_XML,29)
  71. #define PNR_XML_EXTEHXAL_ENTITY_HANDLING MAKE_HX_RESULT(1,SS_XML,30)
  72. #define HXR_XML_NOT_STANDALONE MAKE_HX_RESULT(1,SS_XML,31)
  73. #define HXR_XML_INVALID_NAME   MAKE_HX_RESULT(1,SS_XML,100)
  74. #define HXR_XML_INVALID_CHAR_IN_DOC   MAKE_HX_RESULT(1,SS_XML,101)
  75. #define HXR_XML_TWO_DASHES_NOT_ALLOWED_IN_COMMENT MAKE_HX_RESULT(1,SS_XML,102)
  76. #define HXR_XML_INVALID_DECL   MAKE_HX_RESULT(1,SS_XML,103)
  77. #define HXR_XML_INVALID_PI   MAKE_HX_RESULT(1,SS_XML,104)
  78. #define HXR_XML_INVALID_PI_TARGET   MAKE_HX_RESULT(1,SS_XML,105)
  79. #define HXR_XML_INVALID_CDATA   MAKE_HX_RESULT(1,SS_XML,106)
  80. #define HXR_XML_NO_CLOSING_GT   MAKE_HX_RESULT(1,SS_XML,107)
  81. #define HXR_XML_INVALID_HEX_CHAR_REF   MAKE_HX_RESULT(1,SS_XML,108)
  82. #define HXR_XML_INVALID_CHAR_REF   MAKE_HX_RESULT(1,SS_XML,109)
  83. #define HXR_XML_INVALID_REF   MAKE_HX_RESULT(1,SS_XML,110)
  84. #define HXR_XML_MISSING_EQUALS   MAKE_HX_RESULT(1,SS_XML,111)
  85. // will use HXR_XML_MISSINGQUOTE
  86. //#define HXR_XML_MISSING_QUOT_APOS   MAKE_HX_RESULT(1,SS_XML,112)
  87. #define HXR_XML_MISSING_REQ_SPACE   MAKE_HX_RESULT(1,SS_XML,113)
  88. #define HXR_XML_LT_NOT_ALLOWED   MAKE_HX_RESULT(1,SS_XML,114)
  89. #define HXR_XML_EXPECTED_GT   MAKE_HX_RESULT(1,SS_XML,115)
  90. #define HXR_XML_INVALID_GT_AFFT_2_RSQB_IN_CONTENT MAKE_HX_RESULT(1,SS_XML,116)
  91. #define HXR_XML_INVALID_COMMENT   MAKE_HX_RESULT(1,SS_XML,117)
  92. #endif /* _XMLRESLT_H */