Forgot to remove some more .s strings and do a rename in order to prevent compiler...
[midnight-commander.git] / src / tree.h
blobfa6e06db103d9e7b4dd636cd9d6a81cb7f64d318
1 #ifndef MC_TREE_H
2 #define MC_TREE_H
4 struct WTree;
5 typedef struct WTree WTree;
7 int tree_init (const char *current_dir, int lines);
8 void tree_chdir (WTree *tree, const char *dir);
9 char *tree_selected_name (WTree *tree);
11 void sync_tree (const char *pathname);
13 extern int xtree_mode;
15 WTree *tree_new (int is_panel, int y, int x, int lines, int cols);
16 extern WTree *the_tree;
18 #endif