Sha256: 2069560f58b24284d6d4391d75bf174f3a241d6a64cb32461966b279fb31548a
Contents?: true
Size: 529 Bytes
Versions: 2
Compression:
Stored size: 529 Bytes
Contents
/* $Id: ruby_xml_xinclude.c 225 2007-12-07 04:58:09Z transami $ */ /* Please see the LICENSE file for copyright and distribution information */ #include "libxml.h" #include "ruby_xml_xinclude.h" VALUE cXMLXInclude; VALUE eXMLXIncludeError; // Rdoc needs to know #ifdef RDOC_NEVER_DEFINED mXML = rb_define_module("XML"); #endif void ruby_init_xml_xinclude(void) { cXMLXInclude = rb_define_class_under(mXML, "XInclude", rb_cObject); eXMLXIncludeError = rb_define_class_under(cXMLXInclude, "Error", rb_eRuntimeError); }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libxml-ruby-0.5.3 | ext/libxml/ruby_xml_xinclude.c |
libxml-ruby-0.5.4 | ext/libxml/ruby_xml_xinclude.c |