aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/abstract/MCMessageConstantsPrivate.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/abstract/MCMessageConstantsPrivate.h b/src/core/abstract/MCMessageConstantsPrivate.h
new file mode 100644
index 00000000..39312025
--- /dev/null
+++ b/src/core/abstract/MCMessageConstantsPrivate.h
@@ -0,0 +1,27 @@
+//
+// MCMessageConstantsPrivate.h
+// mailcore2
+//
+// Created by Paul Young on 10/07/2013.
+// Copyright (c) 2013 MailCore. All rights reserved.
+//
+
+#ifndef __MAILCORE_MCMESSAGECONSTANTSPRIVATE_H_
+#define __MAILCORE_MCMESSAGECONSTANTSPRIVATE_H_
+
+#ifdef __cplusplus
+
+namespace mailcore {
+
+ typedef enum {
+ IMAPMessageRenderingTypeHTML,
+ IMAPMessageRenderingTypeHTMLBody,
+ IMAPMessageRenderingTypePlainText,
+ IMAPMessageRenderingTypePlainTextBody
+ } IMAPMessageRenderingType;
+
+}
+
+#endif
+
+#endif