Sha256: 0ae572c62c2674a1f69e8e3bce32426ad19d5bcc05cd2a404fcf477340ae2f84

Contents?: true

Size: 535 Bytes

Versions: 11

Compression:

Stored size: 535 Bytes

Contents

/* $Id: ruby_xml_xinclude.c,v 1.1 2006/02/21 20:40:16 roscopeco Exp $ */

/* 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

11 entries across 11 versions & 2 rubygems

Version Path
libxml-ruby-0.3.6 ext/xml/ruby_xml_xinclude.c
libxml-ruby-0.3.8 ext/xml/ruby_xml_xinclude.c
libxml-ruby-0.3.8.2 ext/xml/ruby_xml_xinclude.c
libxml-ruby-0.3.8.4 ext/xml/ruby_xml_xinclude.c
mkrf-0.2.1 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
mkrf-0.1.1 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
mkrf-0.2.0 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
mkrf-0.1.0 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
mkrf-0.1.2 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
mkrf-0.2.2 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c
mkrf-0.2.3 test/sample_files/libxml-ruby-0.3.8/ext/xml/ruby_xml_xinclude.c