aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCICUTypes.h
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-18 23:02:14 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-04-18 23:02:35 -0700
commitd1b9c95df87106da90916a8cd5ae9b919eb68d8e (patch)
tree009d81c8a4326859409615ff649bb7402ba964a0 /src/core/basetypes/MCICUTypes.h
parent030ad16caa4da511c26c0d89ed89033450cc18b6 (diff)
Implemented JSON parser with Unicode support. Implemented iterators
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