Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * This file is part of libdom.
  3.  * Licensed under the MIT License,
  4.  *                http://www.opensource.org/licenses/mit-license.php
  5.  * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
  6.  */
  7.  
  8. #ifndef xml_xmlerror_h_
  9. #define xml_xmlerror_h_
  10.  
  11. typedef enum {
  12.         DOM_XML_OK              = 0,
  13.  
  14.         DOM_XML_NOMEM           = 1,
  15.  
  16.         DOM_XML_EXTERNAL_ERR      = (1<<16),
  17. } dom_xml_error;
  18.  
  19. #endif
  20.