home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _d48373611ae3ec241f7890d04fc8c39d < prev    next >
Text File  |  2000-03-15  |  4KB  |  124 lines

  1. /*
  2. The contents of this file are subject to the Mozilla Public License
  3. Version 1.1 (the "License"); you may not use this file except in
  4. compliance with the License. You may obtain a copy of the License at
  5. http://www.mozilla.org/MPL/
  6.  
  7. Software distributed under the License is distributed on an "AS IS"
  8. basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  9. License for the specific language governing rights and limitations
  10. under the License.
  11.  
  12. The Original Code is expat.
  13.  
  14. The Initial Developer of the Original Code is James Clark.
  15. Portions created by James Clark are Copyright (C) 1998, 1999
  16. James Clark. All Rights Reserved.
  17.  
  18. Contributor(s):
  19.  
  20. Alternatively, the contents of this file may be used under the terms
  21. of the GNU General Public License (the "GPL"), in which case the
  22. provisions of the GPL are applicable instead of those above.  If you
  23. wish to allow use of your version of this file only under the terms of
  24. the GPL and not to allow others to use your version of this file under
  25. the MPL, indicate your decision by deleting the provisions above and
  26. replace them with the notice and other provisions required by the
  27. GPL. If you do not delete the provisions above, a recipient may use
  28. your version of this file under either the MPL or the GPL.
  29. */
  30.  
  31. #ifndef XmlRole_INCLUDED
  32. #define XmlRole_INCLUDED 1
  33.  
  34. #include "xmltok.h"
  35.  
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39.  
  40. enum {
  41.   XML_ROLE_ERROR = -1,
  42.   XML_ROLE_NONE = 0,
  43.   XML_ROLE_XML_DECL,
  44.   XML_ROLE_INSTANCE_START,
  45.   XML_ROLE_DOCTYPE_NAME,
  46.   XML_ROLE_DOCTYPE_SYSTEM_ID,
  47.   XML_ROLE_DOCTYPE_PUBLIC_ID,
  48.   XML_ROLE_DOCTYPE_CLOSE,
  49.   XML_ROLE_GENERAL_ENTITY_NAME,
  50.   XML_ROLE_PARAM_ENTITY_NAME,
  51.   XML_ROLE_ENTITY_VALUE,
  52.   XML_ROLE_ENTITY_SYSTEM_ID,
  53.   XML_ROLE_ENTITY_PUBLIC_ID,
  54.   XML_ROLE_ENTITY_NOTATION_NAME,
  55.   XML_ROLE_NOTATION_NAME,
  56.   XML_ROLE_NOTATION_SYSTEM_ID,
  57.   XML_ROLE_NOTATION_NO_SYSTEM_ID,
  58.   XML_ROLE_NOTATION_PUBLIC_ID,
  59.   XML_ROLE_ATTRIBUTE_NAME,
  60.   XML_ROLE_ATTRIBUTE_TYPE_CDATA,
  61.   XML_ROLE_ATTRIBUTE_TYPE_ID,
  62.   XML_ROLE_ATTRIBUTE_TYPE_IDREF,
  63.   XML_ROLE_ATTRIBUTE_TYPE_IDREFS,
  64.   XML_ROLE_ATTRIBUTE_TYPE_ENTITY,
  65.   XML_ROLE_ATTRIBUTE_TYPE_ENTITIES,
  66.   XML_ROLE_ATTRIBUTE_TYPE_NMTOKEN,
  67.   XML_ROLE_ATTRIBUTE_TYPE_NMTOKENS,
  68.   XML_ROLE_ATTRIBUTE_ENUM_VALUE,
  69.   XML_ROLE_ATTRIBUTE_NOTATION_VALUE,
  70.   XML_ROLE_ATTLIST_ELEMENT_NAME,
  71.   XML_ROLE_IMPLIED_ATTRIBUTE_VALUE,
  72.   XML_ROLE_REQUIRED_ATTRIBUTE_VALUE,
  73.   XML_ROLE_DEFAULT_ATTRIBUTE_VALUE,
  74.   XML_ROLE_FIXED_ATTRIBUTE_VALUE,
  75.   XML_ROLE_ELEMENT_NAME,
  76.   XML_ROLE_CONTENT_ANY,
  77.   XML_ROLE_CONTENT_EMPTY,
  78.   XML_ROLE_CONTENT_PCDATA,
  79.   XML_ROLE_GROUP_OPEN,
  80.   XML_ROLE_GROUP_CLOSE,
  81.   XML_ROLE_GROUP_CLOSE_REP,
  82.   XML_ROLE_GROUP_CLOSE_OPT,
  83.   XML_ROLE_GROUP_CLOSE_PLUS,
  84.   XML_ROLE_GROUP_CHOICE,
  85.   XML_ROLE_GROUP_SEQUENCE,
  86.   XML_ROLE_CONTENT_ELEMENT,
  87.   XML_ROLE_CONTENT_ELEMENT_REP,
  88.   XML_ROLE_CONTENT_ELEMENT_OPT,
  89.   XML_ROLE_CONTENT_ELEMENT_PLUS,
  90. #ifdef XML_DTD
  91.   XML_ROLE_TEXT_DECL,
  92.   XML_ROLE_IGNORE_SECT,
  93.   XML_ROLE_INNER_PARAM_ENTITY_REF,
  94. #endif /* XML_DTD */
  95.   XML_ROLE_PARAM_ENTITY_REF
  96. };
  97.  
  98. typedef struct prolog_state {
  99.   int (*handler)(struct prolog_state *state,
  100.              int tok,
  101.          const char *ptr,
  102.          const char *end,
  103.          const ENCODING *enc);
  104.   unsigned level;
  105. #ifdef XML_DTD
  106.   unsigned includeLevel;
  107.   int documentEntity;
  108. #endif /* XML_DTD */
  109. } PROLOG_STATE;
  110.  
  111. void XMLTOKAPI XmlPrologStateInit(PROLOG_STATE *);
  112. #ifdef XML_DTD
  113. void XMLTOKAPI XmlPrologStateInitExternalEntity(PROLOG_STATE *);
  114. #endif /* XML_DTD */
  115.  
  116. #define XmlTokenRole(state, tok, ptr, end, enc) \
  117.  (((state)->handler)(state, tok, ptr, end, enc))
  118.  
  119. #ifdef __cplusplus
  120. }
  121. #endif
  122.  
  123. #endif /* not XmlRole_INCLUDED */
  124.