aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-folder-mail.h
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>2000-01-09 13:21:37 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-09 13:21:37 +0800
commit89db309e06bda8777c005857ebccd6a34ac95739 (patch)
tree72193c5d553291fd91db2bfef4dcd338606c36de /shell/e-folder-mail.h
parent25606cbf7d12360f4a8bca7a4631ce7613894597 (diff)
downloadgsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.tar
gsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.tar.gz
gsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.tar.bz2
gsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.tar.lz
gsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.tar.xz
gsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.tar.zst
gsoc2013-evolution-89db309e06bda8777c005857ebccd6a34ac95739.zip
More work. Before the shortcut changes -mig
svn path=/trunk/; revision=1545
Diffstat (limited to 'shell/e-folder-mail.h')
-rw-r--r--shell/e-folder-mail.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/shell/e-folder-mail.h b/shell/e-folder-mail.h
new file mode 100644
index 0000000000..76098c6182
--- /dev/null
+++ b/shell/e-folder-mail.h
@@ -0,0 +1,28 @@
+#ifndef _E_FOLDER_MAIL_H_
+#define _E_FOLDER_MAIL_H_
+
+#include "e-folder.h"
+
+#define E_FOLDER_MAIL_TYPE (e_folder_mail_get_type ())
+#define E_FOLDER_MAIL(o) (GTK_CHECK_CAST ((o), E_FOLDER_MAIL_TYPE, EFolderMail))
+#define E_FOLDER_MAIL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_FOLDER_MAIL_TYPE, EFolderMailClass))
+#define E_IS_FOLDER_MAIL(o) (GTK_CHECK_TYPE ((o), E_FOLDER_MAIL_TYPE))
+#define E_IS_FOLDER_MAIL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_FOLDER_MAIL_TYPE))
+
+typedef struct {
+ EFolder parent;
+} EFolderMail;
+
+typedef struct {
+ EFolderClass parent;
+} EFolderMailClass;
+
+GtkType e_folder_mail_get_type (void);
+EFolder *e_folder_mail_new (const char *uri, const char *name, const char *desc,
+ const char *home_page, const char *view_name);
+
+#endif /* _E_FOLDER_MAIL_H_ */
+
+
+
+