1 /**
2  * dict.h
3  *
4  * Copyright (c) 1999, 2000, 2001
5  *	Lu-chuan Kung and Kang-pen Chen.
6  *	All rights reserved.
7  *
8  * Copyright (c) 2004, 2005
9  *	libchewing Core Team. See ChangeLog for details.
10  *
11  * See the file "COPYING" for information on usage and redistribution
12  * of this file.
13  */
14 
15 #ifndef DICT_H
16 #define DICT_H
17 
18 #ifndef SEEK_SET
19 #define SEEK_SET 0
20 #endif
21 
22 #include "global.h"
23 
24 #define PHONE_PHRASE_NUM (149233)
25 
26 int InitDict( const char * );
27 int GetPhraseFirst( Phrase *phr_ptr, int phone_phr_id );
28 int GetPhraseNext ( Phrase *phr_ptr );
29 
30 #endif
31 
32