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

Side by Side Diff: third_party/hunspell_new/src/hunspell/baseaffix.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 _BASEAFF_HXX_
2 #define _BASEAFF_HXX_
3
4 #include "hunvisapi.h"
5
6 class LIBHUNSPELL_DLL_EXPORTED AffEntry
7 {
8 protected:
9 char * appnd;
10 char * strip;
11 unsigned char appndl;
12 unsigned char stripl;
13 char numconds;
14 char opts;
15 unsigned short aflag;
16 union {
17 char conds[MAXCONDLEN];
18 struct {
19 char conds1[MAXCONDLEN_1];
20 char * conds2;
21 } l;
22 } c;
23 char * morphcode;
24 unsigned short * contclass;
25 short contclasslen;
26 };
27
28 #endif
OLDNEW
« no previous file with comments | « third_party/hunspell_new/src/hunspell/atypes.hxx ('k') | third_party/hunspell_new/src/hunspell/csutil.hxx » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698