mailbox-tree.h revision c25356d5978632df6203437e1953bcb29e0c736f
#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_node *
bool *created);
struct mailbox_node *
struct mailbox_tree_iterate_context *
struct mailbox_node *
const char **path_r);
#endif