| OLD | NEW |
| 1 #include "license.hunspell" | 1 #include "license.hunspell" |
| 2 #include "license.myspell" | 2 #include "license.myspell" |
| 3 | 3 |
| 4 #include "hashmgr.hxx" | 4 #include "hashmgr.hxx" |
| 5 #include "affixmgr.hxx" | 5 #include "affixmgr.hxx" |
| 6 #include "suggestmgr.hxx" | 6 #include "suggestmgr.hxx" |
| 7 #include "csutil.hxx" | 7 #include "csutil.hxx" |
| 8 #include "langnum.hxx" | 8 #include "langnum.hxx" |
| 9 | 9 |
| 10 #define SPELL_COMPOUND (1 << 0) | 10 #define SPELL_COMPOUND (1 << 0) |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #if defined(W32) && defined(LIBRARY) | 22 #if defined(W32) && defined(LIBRARY) |
| 23 #define DLLTEST2_API __declspec(dllexport) | 23 #define DLLTEST2_API __declspec(dllexport) |
| 24 #else | 24 #else |
| 25 #define DLLTEST2_API | 25 #define DLLTEST2_API |
| 26 #endif | 26 #endif |
| 27 | 27 |
| 28 #ifndef _MYSPELLMGR_HXX_ | 28 #ifndef _MYSPELLMGR_HXX_ |
| 29 #define _MYSPELLMGR_HXX_ | 29 #define _MYSPELLMGR_HXX_ |
| 30 | 30 |
| 31 #ifdef HUNSPELL_CHROME_CLIENT | 31 #ifdef HUNSPELL_CHROME_CLIENT |
| 32 #include "chrome/third_party/hunspell/google/bdict_reader.h" | 32 #include "third_party/hunspell/google/bdict_reader.h" |
| 33 #endif | 33 #endif |
| 34 | 34 |
| 35 #ifdef W32 | 35 #ifdef W32 |
| 36 class DLLTEST2_API Hunspell | 36 class DLLTEST2_API Hunspell |
| 37 #else | 37 #else |
| 38 class Hunspell | 38 class Hunspell |
| 39 #endif | 39 #endif |
| 40 { | 40 { |
| 41 AffixMgr* pAMgr; | 41 AffixMgr* pAMgr; |
| 42 HashMgr* pHMgr; | 42 HashMgr* pHMgr; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 struct hentry * checkword(const char *, int * info, char **root); | 145 struct hentry * checkword(const char *, int * info, char **root); |
| 146 char * sharps_u8_l1(char * dest, char * source); | 146 char * sharps_u8_l1(char * dest, char * source); |
| 147 hentry * spellsharps(char * base, char *, int, int, char * tmp, int * info, c
har **root); | 147 hentry * spellsharps(char * base, char *, int, int, char * tmp, int * info, c
har **root); |
| 148 int is_keepcase(const hentry * rv); | 148 int is_keepcase(const hentry * rv); |
| 149 int insert_sug(char ***slst, char * word, int *ns); | 149 int insert_sug(char ***slst, char * word, int *ns); |
| 150 | 150 |
| 151 | 151 |
| 152 }; | 152 }; |
| 153 | 153 |
| 154 #endif | 154 #endif |
| OLD | NEW |