aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCICUTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/basetypes/MCICUTypes.h')
-rw-r--r--src/core/basetypes/MCICUTypes.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/core/basetypes/MCICUTypes.h b/src/core/basetypes/MCICUTypes.h
new file mode 100644
index 00000000..e1cff6d6
--- /dev/null
+++ b/src/core/basetypes/MCICUTypes.h
@@ -0,0 +1,18 @@
+//
+// MCICUTypes.h
+// mailcore2
+//
+// Created by DINH Viêt Hoà on 4/18/13.
+// Copyright (c) 2013 MailCore. All rights reserved.
+//
+
+#ifndef __MAILCORE_MCICUTYPES_H_
+#define __MAILCORE_MCICUTYPES_H_
+
+#if defined(__CHAR16_TYPE__)
+typedef __CHAR16_TYPE__ UChar;
+#else
+typedef uint16_t UChar;
+#endif
+
+#endif