diff options
author | 2014-05-01 02:10:59 +0000 | |
---|---|---|
committer | 2014-05-01 02:10:59 +0000 | |
commit | f7d17f0fd0b9b320a66ac71e95dc557cfea3b792 (patch) | |
tree | c3e9d3c58d1b42d6f76fe41765335d9d2727d4ba | |
parent | ee51d7a9d20e529d2dd7b1646a554cec5489a411 (diff) | |
parent | ab5839ae0b07b81936c184614a1d6a3b6a0f49b7 (diff) | |
download | latinime-f7d17f0fd0b9b320a66ac71e95dc557cfea3b792.tar.gz latinime-f7d17f0fd0b9b320a66ac71e95dc557cfea3b792.tar.xz latinime-f7d17f0fd0b9b320a66ac71e95dc557cfea3b792.zip |
am ab5839ae: Merge "Add CODE_POINT_BEGINNING_OF_SENTENCE in native code."
* commit 'ab5839ae0b07b81936c184614a1d6a3b6a0f49b7':
Add CODE_POINT_BEGINNING_OF_SENTENCE in native code.
-rw-r--r-- | native/jni/src/defines.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/native/jni/src/defines.h b/native/jni/src/defines.h index cd095c91d..a80c97530 100644 --- a/native/jni/src/defines.h +++ b/native/jni/src/defines.h @@ -318,6 +318,8 @@ static inline void prof_out(void) { #define KEYCODE_SPACE ' ' #define KEYCODE_SINGLE_QUOTE '\'' #define KEYCODE_HYPHEN_MINUS '-' +// Code point to indicate beginning-of-sentence. This is not in the code point space of unicode. +#define CODE_POINT_BEGINNING_OF_SENTENCE 0x110000 #define SUGGEST_INTERFACE_OUTPUT_SCALE 1000000.0f #define MAX_PROBABILITY 255 |