move browser in the lib-ui
[apps/madmutt.git] / browser.h
diff --git a/browser.h b/browser.h
deleted file mode 100644 (file)
index c4aa293..0000000
--- a/browser.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright notice from original mutt:
- * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
- *
- * This file is part of mutt-ng, see http://www.muttng.org/.
- * It's licensed under the GNU General Public License,
- * please see the file GPL in the top level source directory.
- */
-
-#ifndef _BROWSER_H
-#define _BROWSER_H 1
-
-struct folder_file {
-  mode_t mode;
-  off_t size;
-  time_t mtime;
-  struct stat *st;
-
-  char *name;
-  char *desc;
-
-  unsigned short new;
-  char delim;
-
-  unsigned imap:1;
-  unsigned selectable:1;
-  unsigned inferiors:1;
-  unsigned tagged:1;
-};
-
-struct browser_state {
-  struct folder_file *entry;
-  int entrylen;        /* number of real entries */
-  int entrymax;        /* max entry */
-  short imap_browse;
-  char *folder;
-  unsigned noselect:1;
-  unsigned marked:1;
-  unsigned unmarked:1;
-};
-
-#endif /* _BROWSER_H */