add pinyin_table_files
authorPeng Wu <alexepico@gmail.com>
Mon, 21 May 2012 07:08:58 +0000 (15:08 +0800)
committerPeng Wu <alexepico@gmail.com>
Mon, 21 May 2012 07:08:58 +0000 (15:08 +0800)
src/storage/phrase_index.cpp
src/storage/phrase_index.h

index 2b7fe0d..39abeee 100644 (file)
@@ -567,3 +567,10 @@ const char * pinyin_phrase_files[PHRASE_INDEX_LIBRARY_COUNT] =
         "gb_char.bin",
         "gbk_char.bin"
     };
+
+const char * pinyin_table_files[PHRASE_INDEX_LIBRARY_COUNT] =
+    {
+        NULL,
+        "gb_char.table",
+        "gbk_char.table"
+    };
index 1144ce9..bb3f84b 100644 (file)
@@ -712,5 +712,6 @@ public:
 };
 
 extern const char * pinyin_phrase_files[PHRASE_INDEX_LIBRARY_COUNT];
+extern const char * pinyin_table_files[PHRASE_INDEX_LIBRARY_COUNT];
 
 #endif