repo.or.cz
/
TortoiseGit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Catch exceptions in the shell extension and submit them
[TortoiseGit.git]
/
ext
/
hunspell
/
baseaffix.hxx
blob
d6a5cd672ed8eeada4e134ccded5c1ddc2cb1666
1
#ifndef _BASEAFF_HXX_
2
#define _BASEAFF_HXX_
3
4
class
AffEntry
5
{
6
public
:
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
base
[
SETSIZE
];
18
struct
{
19
char
ascii
[
SETSIZE
/
2
];
20
char
neg
[
8
];
21
char
all
[
8
];
22
w_char
*
wchars
[
8
];
23
int
wlen
[
8
];
24
}
utf8
;
25
}
conds
;
26
char
*
morphcode
;
27
unsigned short
*
contclass
;
28
short
contclasslen
;
29
};
30
31
#endif