File: nodeObj.h

package info (click to toggle)
tclxml 3.3~svn11-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,392 kB
  • sloc: ansic: 13,292; tcl: 11,656; xml: 3,269; sh: 559; makefile: 15
file content (28 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* nodeObj.h --
 *
 *	This module manages libxml2 xmlNodePtr and event node Tcl objects.
 *
 * Copyright (c) 2003 Zveno Pty Ltd
 * http://www.zveno.com/
 *
 * See the file "LICENSE" for information on usage and
 * redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 *
 * $Id: nodeObj.h,v 1.3 2003/12/09 04:56:43 balls Exp $
 */

#ifndef TCLDOM_LIBXML2_NODEOBJ_H
#define TCLDOM_LIBXML2_NODEOBJ_H

#include "tcl.h"
#include <libxml/tree.h>
#include "tcldom-libxml2.h"

#define TCLDOM_LIBXML2_NODE_NODE 0
#define TCLDOM_LIBXML2_NODE_EVENT 1

typedef void (TclDOM_libxml2Node_FreeHookProc) _ANSI_ARGS_((ClientData clientData));

int TclDOM_libxml2_NodeObjInit _ANSI_ARGS_((Tcl_Interp *interp));

#endif /* TCLDOM_LIBXML2_NODEOBJ_H */