Imported version 0.2-1
[mstardict] / src / lib / dictmask.h
1 #ifndef _STARDICT_DICTMASK_H_
2 #define _STARDICT_DICTMASK_H_
3
4 enum InstantDictType {
5         InstantDictType_UNKNOWN = 0,
6         InstantDictType_LOCAL,
7         InstantDictType_VIRTUAL,
8         InstantDictType_NET,
9 };
10
11 struct InstantDictIndex {
12         InstantDictType type;
13         size_t index;
14 };
15
16 #endif