allow persistent storage and loading of the remote tree

This commit is contained in:
josch
2014-09-27 20:18:02 +02:00
parent b6f35763fa
commit 53981a2229
3 changed files with 281 additions and 15 deletions

View File

@@ -20,6 +20,7 @@
#define _MFFUSE_HASHTBL_H_
#include <fuse/fuse.h>
#include <stdio.h>
#include "../mfapi/mfconn.h"
@@ -45,4 +46,8 @@ int folder_tree_readdir(folder_tree * tree, const char *path,
void folder_tree_update(folder_tree * tree, mfconn * conn);
int folder_tree_store(folder_tree * tree, FILE * stream);
folder_tree *folder_tree_load(FILE * stream);
#endif