Sha256: f880c8fd0df1530a1b763e756c41aaedf1a9ac37eb80a157c3ad1cf8619d127e
Contents?: true
Size: 693 Bytes
Versions: 1
Compression:
Stored size: 693 Bytes
Contents
/* $Id: ruby_xml_node_set.h 134 2007-08-29 17:30:19Z danj $ */ /* Please see the LICENSE file for copyright and distribution information */ #ifndef __RUBY_XML_NODE_SET__ #define __RUBY_XML_NODE_SET__ extern VALUE cXMLNodeSet; typedef struct ruby_xml_node_set { xmlNodeSetPtr node_set; VALUE xd; VALUE xpath; int data_type; void *data; } ruby_xml_node_set; void ruby_xml_node_set_free(ruby_xml_node_set *rxnset); void ruby_init_xml_node_set(void); VALUE ruby_xml_node_set_new(VALUE class, VALUE xd, VALUE xpath, xmlNodeSetPtr node_set); VALUE ruby_xml_node_set_new2(VALUE xd, VALUE xpath, xmlNodeSetPtr node_set); VALUE ruby_xml_node_set_each(VALUE self); #endif
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.0.1 | ext/xml/ruby_xml_node_set.h |