mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
e792cffb8d
double underscore. Added #includes for dependent files. * popt.c: Likewise. * popthelp.c: Likewise. * tree.c: Moved a macro from tree.h to here, as it is useless outside tree.c.
19 lines
384 B
C
19 lines
384 B
C
#ifndef MC_TREE_H
|
|
#define MC_TREE_H
|
|
|
|
struct WTree;
|
|
typedef struct WTree WTree;
|
|
|
|
int tree_init (const char *current_dir, int lines);
|
|
void tree_chdir (WTree *tree, const char *dir);
|
|
char *tree_selected_name (WTree *tree);
|
|
|
|
void sync_tree (const char *pathname);
|
|
|
|
extern int xtree_mode;
|
|
|
|
WTree *tree_new (int is_panel, int y, int x, int lines, int cols);
|
|
extern WTree *the_tree;
|
|
|
|
#endif
|