70,020
社区成员




//用于共享内存的结构体
struct share
{
char skip[2][2]; //跳过的窗口类
struct item dic[128]; //翻译字典
int cnt1; //长度为1的单词数
int cnt2; //长度小于等于2的单词数
int cnt3; //长度小于等于3的单词数
int cnt4; //长度小于等于4的单词数
int cnt5; //长度小于等于5的单词数
int cnt6; //长度小于等于6的单词数
int cnt7; //长度小于等于7的单词数
int cnt8; //长度小于等于8的单词数
int cnt9; //长度小于等于9的单词数
int sum; //单词总数
int skipcnt; //跳过窗口类总数
struct ini myini; //配置文件
};