File: xpathcontext.h

package info (click to toggle)
libxml-libxml-perl 2.0116%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,420 kB
  • sloc: perl: 6,139; ansic: 3,752; xml: 182; sh: 64; makefile: 8
file content (22 lines) | stat: -rw-r--r-- 418 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __LIBXML_XPATHCONTEXT_H__
#define __LIBXML_XPATHCONTEXT_H__

/*
 * xpathcontext.h
 *
 * This file is directly included into LibXML.xs.
 *
 */

struct _XPathContextData {
    SV* node;
    HV* pool;
    SV* varLookup;
    SV* varData;
};
typedef struct _XPathContextData XPathContextData;
typedef XPathContextData* XPathContextDataPtr;

#define XPathContextDATA(ctxt) ((XPathContextDataPtr) ctxt->user)

#endif