File: ruby_xml_schema.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 (16 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __RUBY_XML_SCHEMA__
#define __RUBY_XML_SCHEMA__

#include <libxml/schemasInternals.h>
#include <libxml/xmlschemas.h>

extern VALUE cXMLSchema;

typedef struct rxp_schema {
  xmlSchemaPtr schema;   /* Schema interface */
} ruby_xml_schema;

void  ruby_init_xml_schema(void);
void  ruby_schema_free(ruby_xml_schema *rxs);
#endif