1 /* colexp.h */
2 
3 /* Collapse/expansion engine */
4 
5 /* fsv - 3D File System Visualizer
6  * Copyright (C)1999 Daniel Richard G. <skunk@mit.edu>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22 
23 
24 #ifndef FSV_COLEXP_H
25 #define FSV_COLEXP_H
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 typedef enum {
32 	COLEXP_COLLAPSE_RECURSIVE,
33 	COLEXP_EXPAND,
34 	COLEXP_EXPAND_ANY,
35 	COLEXP_EXPAND_RECURSIVE
36 } ColExpMesg;
37 
38 
39 void colexp( GNode *dnode, ColExpMesg mesg );
40 #ifdef __cplusplus
41 };
42 #endif
43 
44 #endif //FSV_COLEXP_H /* end colexp.h */
45 
46