Changeset 14494 for trunk/ippTools/src/pxtree.h
- Timestamp:
- Aug 14, 2007, 2:38:13 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/ippTools/src/pxtree.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/pxtree.h
r14489 r14494 21 21 #define PXTREE_H 1 22 22 23 #include <stdio.h> 24 #include <stdbool.h> 25 23 26 #include <pslib.h> 27 24 28 25 29 typedef struct pxNode { … … 29 33 } pxNode; 30 34 35 typedef bool (*pxNodeFunc)(pxNode *node); 36 31 37 pxNode *pxNodeAlloc( 32 38 const char *name, 33 39 pxNode *parent 34 40 ) PS_ATTR_MALLOC; 41 42 void pxNodePrint( 43 FILE *stream, 44 pxNode *node 45 ); 46 47 bool pxTreeCrawl( 48 pxNode *node, 49 pxNodeFunc func 50 ); 35 51 36 52 /*
Note:
See TracChangeset
for help on using the changeset viewer.
