File: dic_personality.h

package info (click to toggle)
anthy 6300d-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,400 kB
  • ctags: 2,270
  • sloc: ansic: 17,009; sh: 13,554; lisp: 1,039; makefile: 252; ruby: 212; perl: 10
file content (20 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * ¦ǤΥѡʥƥδ
 * ե󥹥Ȥʤɤϥեȥɤ롣
 */
#ifndef _dic_personality_h_included_
#define _dic_personality_h_included_

extern struct mem_dic *anthy_current_personal_dic_cache;
extern struct record_stat *anthy_current_record;

/* record */
void anthy_init_record(void);
struct record_stat *anthy_create_record(const char *id);
void anthy_release_record(struct record_stat *);

/* dic_cache */
struct dic_cache *anthy_create_dic_cache(const char *id);
void anthy_release_dic_cache(struct dic_cache *);

#endif