Applied fPIE, pie compier option
[platform/core/uifw/anthy.git] / src-worddic / mem_dic.h
1 #ifndef _mem_dic_h_included_
2 #define _mem_dic_h_included_
3
4 #include <anthy/alloc.h>
5 #include "dic_ent.h"
6
7
8 #define HASH_SIZE 64 /*¥Ï¥Ã¥·¥å¥Æ¡¼¥Ö¥ë¤Î¥µ¥¤¥º¡Ä64(¤Ê¤ó¤È¤Ê¤¯)*/
9
10 /** ¥á¥â¥ê¼­½ñ */
11 struct mem_dic {
12   struct seq_ent *seq_ent_hash[HASH_SIZE];
13   allocator seq_ent_allocator;
14   allocator dic_ent_allocator;
15 };
16
17 #endif