/* $Id: ruby_xml_xpointer.h 614 2008-11-22 08:04:39Z cfis $ */ /* Please see the LICENSE file for copyright and distribution information */ #ifndef __rxml_XPOINTER__ #define __rxml_XPOINTER__ extern VALUE cXMLXPointer; extern VALUE eXMLXPointerInvalidExpression; typedef struct rxml_xpointer { VALUE xd; VALUE ctxt; /* * This needs to go into a xpointer data struct: * * xmlLocationSetPtr xptr; * * I also need an xpointer data struct type. */ } rxml_xpointer; void ruby_init_xml_xpointer(void); #endif