appHand_EXIDecoder.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright (C) 2007-2012 Siemens AG
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License as published
  6. * by the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU Lesser General Public License for more details.
  13. * GNU Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. /*******************************************************************
  19. *
  20. * @author Daniel.Peintner.EXT@siemens.com
  21. * @version 0.6
  22. * @contact Joerg.Heuer@siemens.com
  23. *
  24. * <p>Code generated by EXIdizer</p>
  25. ********************************************************************/
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. #ifndef EXI_appHand_DECODER_H
  30. #define EXI_appHand_DECODER_H
  31. #include "EXITypes.h"
  32. int exiappHandInitDecoder(bitstream_t* stream, exi_state_t* state,
  33. exi_name_table_runtime_t runtimeTable);
  34. int exiappHandDecodeNextEvent(bitstream_t* stream,
  35. exi_state_t* state, exi_event_t* nextEvent);
  36. int exiappHandDecodeStartDocument(bitstream_t* stream,
  37. exi_state_t* state);
  38. int exiappHandDecodeEndDocument(bitstream_t* stream,
  39. exi_state_t* state);
  40. int
  41. exiappHandDecodeStartElement(bitstream_t* stream,
  42. exi_state_t* state, eqname_t* se);
  43. int exiappHandDecodeStartElementGeneric(bitstream_t* stream,
  44. exi_state_t* state, qname_t* qname);
  45. int exiappHandDecodeEndElement(bitstream_t* stream,
  46. exi_state_t* state, eqname_t* ee);
  47. int exiappHandDecodeEndElementUndeclared(bitstream_t* stream,
  48. exi_state_t* state, eqname_t* ee);
  49. int exiappHandDecodeCharacters(bitstream_t* stream,
  50. exi_state_t* state, exi_value_t* val);
  51. int exiappHandDecodeCharactersGeneric(bitstream_t* stream,
  52. exi_state_t* state, exi_value_t* val);
  53. int exiappHandDecodeCharactersGenericUndeclared(bitstream_t* stream,
  54. exi_state_t* state, exi_value_t* val);
  55. int exiappHandDecodeAttribute(bitstream_t* stream,
  56. exi_state_t* state, eqname_t* at, exi_value_t* val);
  57. int exiappHandDecodeAttributeXsiNil(bitstream_t* stream,
  58. exi_state_t* state, exi_value_t* val);
  59. int exiappHandDecodeAttributeXsiType(bitstream_t* stream,
  60. exi_state_t* state, exi_value_t* val);
  61. int exiappHandDecodeAttributeGenericUndeclared(bitstream_t* stream,
  62. exi_state_t* state, qname_t* at, exi_value_t* val);
  63. #endif
  64. #ifdef __cplusplus
  65. }
  66. #endif