-
Notifications
You must be signed in to change notification settings - Fork 1
/
SPELL.cs
56 lines (47 loc) · 1005 Bytes
/
SPELL.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
using System;
namespace HunspellSharp
{
/// <summary>
/// Info options
/// </summary>
[Flags]
public enum SPELL : ushort
{
/// <summary>
/// the result is a compound word
/// </summary>
COMPOUND = (1 << 0),
/// <summary>
/// an explicit forbidden word
/// </summary>
FORBIDDEN = (1 << 1),
/// <summary>
/// unused
/// </summary>
ALLCAP = (1 << 2),
/// <summary>
/// unused
/// </summary>
NOCAP = (1 << 3),
/// <summary>
/// internal
/// </summary>
INITCAP = (1 << 4),
/// <summary>
/// internal
/// </summary>
ORIGCAP = (1 << 5),
/// <summary>
/// possibly forbidden word
/// </summary>
WARN = (1 << 6),
/// <summary>
/// permit only 2 dictionary words in the compound
/// </summary>
COMPOUND_2 = (1 << 7),
/// <summary>
/// limit suggestions for the best ones, i.e. ph:
/// </summary>
BEST_SUG = (1 << 8),
}
}