File: ruby_xml_dtd.h

package info (click to toggle)
libxml-ruby 0.5.2.0-3%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 652 kB
  • ctags: 875
  • sloc: ansic: 5,874; ruby: 1,524; xml: 144; makefile: 9
file content (17 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __RUBY_XML_DTD__
#define __RUBY_XML_DTD__

extern VALUE cXMLDtd;

typedef struct rxp_dtd {
  xmlDtdPtr dtd;   /* DTD interface */
  //int data_type;   /* The data type referenced by *data */
  //void *data;      /* Pointer to an external structure of options */
  //int is_ptr;      /* Determines if this object owns its data or points to it someplace else */
  //VALUE xmlver;    /* T_STRING with the xml version */
} ruby_xml_dtd;

void  ruby_init_xml_dtd(void);
void  ruby_dtd_free(ruby_xml_dtd *rxdtd);

#endif