mailbox-tree.h revision 24acd68c82dc137b88bb3ba3258b9d1f7ebcb44d
#ifndef MAILBOX_TREE_H
#define MAILBOX_TREE_H
#include "mailbox-list.h"
struct mailbox_node {
struct mailbox_node *parent;
struct mailbox_node *next;
struct mailbox_node *children;
char *name;
enum mailbox_info_flags flags;
};
struct mailbox_tree_context *
char separator);
struct mailbox_node *
bool *created_r);
struct mailbox_node *
struct mailbox_node *
const char **path_r);
#endif