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 2009 Bo Yang <struggleyb.nku.com>
  6.  */
  7.  
  8. #ifndef dom_html_isindex_element_h_
  9. #define dom_html_isindex_element_h_
  10.  
  11. #include <dom/core/exceptions.h>
  12.  
  13. struct dom_html_form_element;
  14.  
  15. /**
  16.  * Note: the HTML 4.01 spec said: this element is deprecated, use
  17.  * <INPUT> element instead.
  18.  */
  19.  
  20. typedef struct dom_html_isindex_element dom_html_isindex_element;
  21.  
  22. dom_exception dom_html_isindex_element_get_form(dom_html_isindex_element *ele,
  23.                 struct dom_html_form_element **form);
  24.  
  25. #endif
  26.  
  27.