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 28 29 30 31 32 33 34 35
|
/*
* Interface for personal dictionary
*/
#ifndef _dicutil_h_included_
#define _dicutil_h_included_
/* ֤ / anthy_priv_dic_add_entry*/
/* OK / ñ줬ϿǤ */
#define ANTHY_DIC_UTIL_OK 0
/* / Ͽ˼Ԥ */
#define ANTHY_DIC_UTIL_ERROR -1
/* Ʊñ줬ϿƤä٤ */
#define ANTHY_DIC_UTIL_DUPLICATE -2
void anthy_dic_util_init(void);
void anthy_dic_util_quit(void);
void anthy_dic_util_set_personality(const char *);
const char *anthy_dic_util_get_anthydir(void);
#define HAS_ANTHY_DICUTIL_SET_ENCODING
int anthy_dic_util_set_encoding(int );
void anthy_priv_dic_delete(void);
int anthy_priv_dic_select_first_entry(void);
int anthy_priv_dic_select_next_entry(void);
int anthy_priv_dic_select_entry(const char *);/* not implemented */
char *anthy_priv_dic_get_index(char *buf, int len);
int anthy_priv_dic_get_freq(void);
char *anthy_priv_dic_get_wtype(char *buf, int len);
char *anthy_priv_dic_get_word(char *buf, int len);
int anthy_priv_dic_add_entry(const char *yomi, const char *word,
const char *wt, int freq);
#endif
|