Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: third_party/hunspell_new/src/hunspell/dictmgr.hxx

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef _DICTMGR_HXX_
2 #define _DICTMGR_HXX_
3
4 #include "hunvisapi.h"
5
6 #define MAXDICTIONARIES 100
7 #define MAXDICTENTRYLEN 1024
8
9 struct dictentry {
10 char * filename;
11 char * lang;
12 char * region;
13 };
14
15
16 class LIBHUNSPELL_DLL_EXPORTED DictMgr
17 {
18
19 int numdict;
20 dictentry * pdentry;
21
22 public:
23
24 DictMgr(const char * dictpath, const char * etype);
25 ~DictMgr();
26 int get_list(dictentry** ppentry);
27
28 private:
29 int parse_file(const char * dictpath, const char * etype);
30 char * mystrsep(char ** stringp, const char delim);
31 char * mystrdup(const char * s);
32 void mychomp(char * s);
33
34 };
35
36 #endif
OLDNEW
« no previous file with comments | « third_party/hunspell_new/src/hunspell/csutil.cxx ('k') | third_party/hunspell_new/src/hunspell/dictmgr.cxx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698