Update of /cvsroot/pdatabase/pdb/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2031/include
Modified Files:
pdb_types.h
Log Message:
fixed bug with hash comment falling back to parent node
Index: pdb_types.h
===================================================================
RCS file: /cvsroot/pdatabase/pdb/include/pdb_types.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- pdb_types.h 24 Feb 2005 16:48:38 -0000 1.8
+++ pdb_types.h 22 Sep 2005 00:38:23 -0000 1.9
@@ -78,6 +78,7 @@
*/
struct pdb_node_types_t {
int bitmask;
+ char* str; /* string name */
char* open_token;
char* close_token;
create_cb_t create_cb;
@@ -128,6 +129,7 @@
DLLEXP int pdb_free_node(struct pdb_node_t* nptr);
int pdb_standard_write_node(struct pdb* dbptr, FILE* fptr,
struct pdb_node_t* nptr, int tabs);
+char* pdb_node_type_name(int type);
/*
* Binary tree
|