Sha256: 3dbf8ebd06221937e52100b4778fe8e054dafc7cf1b6a469012b6af0049444ce
Contents?: true
Size: 448 Bytes
Versions: 6
Compression:
Stored size: 448 Bytes
Contents
/* $Id: ruby_xml_sax_parser.h 544 2008-11-16 09:50:27Z cfis $ */ /* Please see the LICENSE file for copyright and distribution information */ #ifndef __RUBY_XML_SAX_PARSER__ #define __RUBY_XML_SAX_PARSER__ extern VALUE cXMLSaxParser; typedef struct ruby_xml_sax_parser { xmlParserCtxtPtr xpc; xmlSAXHandlerPtr xsh; VALUE callbackHandler; VALUE filename; VALUE str; } ruby_xml_sax_parser; void ruby_init_xml_sax_parser(void); #endif
Version data entries
6 entries across 6 versions & 1 rubygems