From 9c490c6b8fe425eef1690f62e1655a045e254d9e Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Tue, 13 Oct 2015 15:54:58 +0800 Subject: support fallback tables in double pinyin --- src/storage/pinyin_parser2.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/storage/pinyin_parser2.h') diff --git a/src/storage/pinyin_parser2.h b/src/storage/pinyin_parser2.h index e8f01cd..f490411 100644 --- a/src/storage/pinyin_parser2.h +++ b/src/storage/pinyin_parser2.h @@ -73,6 +73,11 @@ typedef struct { const char * m_yunmus[2]; } double_pinyin_scheme_yunmu_item_t; +typedef struct { + const char * m_input; + const char * m_yunmu; +} double_pinyin_scheme_fallback_item_t; + typedef struct { const char m_input; const char * m_chewing; -- cgit