summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-06-28 11:06:40 +0800
committerPeng Wu <alexepico@gmail.com>2016-06-28 11:06:40 +0800
commit05c2c6e853ce05a0843ae34f1df6a2226e255dc8 (patch)
tree6522eb0eb33baa10736d6b17a171ab83b09110a6
parentb348cbc5a0cc19ac4f601e9d73b6851768331e5d (diff)
downloadlibpinyin-05c2c6e853ce05a0843ae34f1df6a2226e255dc8.tar.gz
libpinyin-05c2c6e853ce05a0843ae34f1df6a2226e255dc8.tar.xz
libpinyin-05c2c6e853ce05a0843ae34f1df6a2226e255dc8.zip
add comments
-rw-r--r--src/pinyin.cpp2
-rw-r--r--src/pinyin.h34
2 files changed, 33 insertions, 3 deletions
diff --git a/src/pinyin.cpp b/src/pinyin.cpp
index ca3fa78..28d5be2 100644
--- a/src/pinyin.cpp
+++ b/src/pinyin.cpp
@@ -2819,8 +2819,6 @@ bool pinyin_get_character_offset(pinyin_instance_t * instance,
size_t * poffset) {
pinyin_context_t * context = instance->m_context;
FacadePhraseIndex * phrase_index = context->m_phrase_index;
-
- PhoneticKeyMatrix & matrix = instance->m_matrix;
MatchResults results = instance->m_match_results;
size_t offset = 0;
diff --git a/src/pinyin.h b/src/pinyin.h
index c691197..863e945 100644
--- a/src/pinyin.h
+++ b/src/pinyin.h
@@ -952,17 +952,49 @@ bool pinyin_get_phrase_token(pinyin_instance_t * instance,
guint index,
phrase_token_t * token);
-
+/**
+ * pinyin_get_full_pinyin_auxiliary_text:
+ * @instance: the pinyin instance.
+ * @input: the user input.
+ * @cursor: the current cursor.
+ * @aux_text: the auxiliary text.
+ * @returns: whether the get operation is successful.
+ *
+ * Get the auxiliary text for full pinyin.
+ *
+ */
bool pinyin_get_full_pinyin_auxiliary_text(pinyin_instance_t * instance,
const char * input,
size_t cursor,
gchar ** aux_text);
+/**
+ * pinyin_get_double_pinyin_auxiliary_text:
+ * @instance: the pinyin instance.
+ * @input: the user input.
+ * @cursor: the current cursor.
+ * @aux_text: the auxiliary text.
+ * @returns: whether the get operation is successful.
+ *
+ * Get the auxiliary text for double pinyin.
+ *
+ */
bool pinyin_get_double_pinyin_auxiliary_text(pinyin_instance_t * instance,
const char * input,
size_t cursor,
gchar ** aux_text);
+/**
+ * pinyin_get_chewing_auxiliary_text:
+ * @instance: the pinyin instance.
+ * @input: the user input.
+ * @cursor: the current cursor.
+ * @aux_text: the auxiliary text.
+ * @returns: whether the get operation is successful.
+ *
+ * Get the auxiliary text for chewing.
+ *
+ */
bool pinyin_get_chewing_auxiliary_text(pinyin_instance_t * instance,
const char * input,
size_t cursor,