1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
/**
* @file global-private.h
*
* @brief internal definitions such as data filename.
*
* Copyright (c) 2008
* libchewing Core Team. See ChangeLog for details.
*
* See the file "COPYING" for information on usage and redistribution
* of this file.
*/
#ifndef _CHEWING_GLOBAL_PRIVATE_H
#define _CHEWING_GLOBAL_PRIVATE_H
#define PHONE_TREE_FILE "fonetree.dat"
#define DICT_FILE "dict.dat"
#define PH_INDEX_FILE "ph_index.dat"
#define CHAR_FILE "us_freq.dat"
#define CHAR_INDEX_FILE "ch_index.dat"
#define CHAR_INDEX_BEGIN_FILE "ch_index_begin.dat"
#define CHAR_INDEX_PHONE_FILE "ch_index_phone.dat"
#define SYMBOL_TABLE_FILE "symbols.dat"
#define SOFTKBD_TABLE_FILE "swkb.dat"
#define CHEWING_DEFINITION_FILE "chewing-definition.h"
#endif
|