(linenum→info "unix/slp.c:2238")

anthy/9100e/src-worddic/dic_personality.h

    1: /*
    2:  * 辞書側でのパーソナリティの管理
    3:  * リファレンスカウントなどはフロントエンドがやる。
    4:  */
    5: #ifndef _dic_personality_h_included_
    6: #define _dic_personality_h_included_
    7: 
    8: extern struct mem_dic *anthy_current_personal_dic_cache;
    9: extern struct record_stat *anthy_current_record;
   10: 
   11: /* record */
   12: void anthy_init_record(void);
   13: struct record_stat *anthy_create_record(const char *id);
   14: void anthy_release_record(struct record_stat *);
   15: 
   16: /* dic_cache */
   17: struct dic_cache *anthy_create_dic_cache(const char *id);
   18: void anthy_release_dic_cache(struct dic_cache *);
   19: 
   20: #endif
Syntax (Markdown)