Sha256: cf0ef750bc5889111322e01a11370efc009fe895a6747f99bcf145d33107a131
Contents?: true
Size: 805 Bytes
Versions: 1
Compression:
Stored size: 805 Bytes
Contents
/* $Id: ruby_xml_xpath_context.h 134 2007-08-29 17:30:19Z danj $ */ /* Please see the LICENSE file for copyright and distribution information */ #ifndef __RUBY_XML_XPATH_CONTEXT__ #define __RUBY_XML_XPATH_CONTEXT__ extern VALUE cXMLXPathContext; typedef struct ruby_xml_xpath_context { VALUE xd; xmlXPathContextPtr ctxt; } ruby_xml_xpath_context; void ruby_xml_xpath_context_free(ruby_xml_xpath_context *rxxpc); VALUE ruby_xml_xpath_context_new(VALUE class, VALUE xd, xmlXPathContextPtr ctxt); VALUE ruby_xml_xpath_context_new2(VALUE xd, xmlXPathContextPtr ctxt); VALUE ruby_xml_xpath_context_new3(VALUE xd); VALUE ruby_xml_xpath_context_new4(VALUE rnode); VALUE ruby_xml_xpath_context_register_namespace(VALUE self, VALUE prefix, VALUE uri); void ruby_init_xml_xpath_context(void); #endif
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.0.1 | ext/xml/ruby_xml_xpath_context.h |