mailbox-tree.h revision be6cc9db0d1edc0cf945bf3119bcaa68e484d1de
#ifndef __MAILBOX_TREE_H
#define __MAILBOX_TREE_H
#include "mailbox-list.h"
struct mailbox_node {
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