aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSatoshi Kataoka <satok@google.com>2013-03-04 08:59:42 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2013-03-04 08:59:42 +0000
commite691f93c9dd7558b2ab92b1830683a17d74659a5 (patch)
treed8888bde38ad3af503e05885b122cd8f93c2e943
parent81d43233f58281fe5b13d8561b9d39ea1b1dc80d (diff)
parentd8708911709527bb88de4f5a776ec7a20391fe37 (diff)
downloadlatinime-e691f93c9dd7558b2ab92b1830683a17d74659a5.tar.gz
latinime-e691f93c9dd7558b2ab92b1830683a17d74659a5.tar.xz
latinime-e691f93c9dd7558b2ab92b1830683a17d74659a5.zip
am d8708911: Add CorrectionType
* commit 'd8708911709527bb88de4f5a776ec7a20391fe37': Add CorrectionType
-rw-r--r--native/jni/src/defines.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/native/jni/src/defines.h b/native/jni/src/defines.h
index a84dfddec..55468760b 100644
--- a/native/jni/src/defines.h
+++ b/native/jni/src/defines.h
@@ -411,4 +411,18 @@ typedef enum {
A_DOUBLE_LETTER,
A_STRONG_DOUBLE_LETTER
} DoubleLetterLevel;
+
+typedef enum {
+ CT_MATCH,
+ CT_OMISSION,
+ CT_INSERTION,
+ CT_TRANSPOSITION,
+ CT_SUBSTITUTION,
+ CT_SPACE_SUBSTITUTION,
+ CT_SPACE_OMISSION,
+ CT_COMPLETION,
+ CT_TERMINAL,
+ CT_NEW_WORD,
+ CT_NEW_WORD_BIGRAM,
+} CorrectionType;
#endif // LATINIME_DEFINES_H