mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 21:06:52 +03:00
aaa7b5e9a2
- GNOME edition now compiles without any trace of the text mode dependencies. - We no longer link with libraries we do not use (crypt, gpm), this fixes the recent bug reports. - More tree updates, enhancements. Miguel.
37 lines
412 B
C
37 lines
412 B
C
/*
|
|
* gtree: utility routines to use the GtkDTree widget in gmc.
|
|
*
|
|
* Miguel de Icaza
|
|
*/
|
|
#include <config.h>
|
|
#include <sys/types.h>
|
|
#include "tree.h"
|
|
#include <gnome.h>
|
|
#include "gtree.h"
|
|
|
|
void
|
|
sync_tree (char *pathname)
|
|
{
|
|
}
|
|
|
|
void
|
|
tree_check (const char *dir)
|
|
{
|
|
}
|
|
|
|
void
|
|
start_tree_check (WTree *tree)
|
|
{
|
|
}
|
|
|
|
void
|
|
do_tree_check (WTree *tree, const char *subname)
|
|
{
|
|
}
|
|
|
|
void
|
|
end_tree_check (WTree *tree)
|
|
{
|
|
}
|
|
|