File: ruby_xml_dtd.h

package info (click to toggle)
ruby-mkrf 0.2.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,688 kB
  • sloc: ansic: 12,494; ruby: 6,998; sh: 790; yacc: 374; makefile: 57; cpp: 10
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