File: nodeObj.h

package info (click to toggle)
tclxml 1%3A3.2.7-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,952 kB
  • sloc: ansic: 11,995; tcl: 6,842; sh: 463; makefile: 12
file content (28 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (5)
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.1.1.1 2009/01/16 22:11:49 joye 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 */