Sha256: c145649544e1c93bca1d2d00497e617e0fa60ca04a04483a0d1d8b8205e8fc2d
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
/* DO NOT EDIT THIS FILE - UPDATE FROM LIBXML-RUBY ONLY */ /* Generated: Thu Mar 09 23:18:22 GMT 2006 */ /* Release : 0.3.6 */ /* $Id: ruby_xml_node.h,v 1.1 2006/02/21 20:40:16 roscopeco Exp $ */ /* Please see the LICENSE file for copyright and distribution information */ #ifndef __RUBY_XML_NODE__ #define __RUBY_XML_NODE__ extern VALUE cXMLNode; extern VALUE eXMLNodeSetNamespace; extern VALUE eXMLNodeFailedModify; extern VALUE eXMLNodeUnknownType; typedef struct ruby_xml_node { xmlNodePtr node; VALUE xd; int is_ptr; } ruby_xml_node; void ruby_xml_node_free(ruby_xml_node *rxn); void ruby_init_xml_node(void); VALUE ruby_xml_node_child_set(VALUE self, VALUE obj); VALUE ruby_xml_node_new(VALUE class, xmlNodePtr node); VALUE ruby_xml_node_new2(VALUE class, VALUE xd, xmlNodePtr node); VALUE ruby_xml_node_name_get(VALUE self); VALUE ruby_xml_node_property_get(VALUE self, VALUE key); VALUE ruby_xml_node_property_set(VALUE self, VALUE key, VALUE val); VALUE ruby_xml_node_set_ptr(VALUE node, int is_ptr); #endif
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
libxslt-ruby-0.3.6 | ext/xml/libxml-ruby/ruby_xml_node.h |
libxsl-ruby-0.3.6 | ext/xml/libxml-ruby/ruby_xml_node.h |