?? mainstru.h
字號:
#include "StdAfx.h"
//Xuned Change Begin
//#include "..\\caimprg\\Huffman.h"
//#include "..\\caimprg\\DictMent.h"
#include "Diction.h"
//Xuned Change End
#ifndef _MAINSTRU_H
#define _MAINSTRU_H
typedef struct SentenceType
{
//LXHBegin
DictNode * m_pWordFirst; //第一個詞結點
DictNode * m_pWordLast; //最后一個結點
char m_cTense; //時態:0現在,1過去,2將來,3過去將來
char m_cAspect; //體態:0一般,1進行,2完成,3完成進行
char m_cMood; //語態:0:陳述,1:一般疑問,2:特殊疑問,3:感嘆,4:祈使
char m_cVoice; //0:主動,1:被動
char m_cNegative; //0:肯定,1:否定,
BYTE m_byPerson; //1:第一人稱,2:第二人稱,3:第三人稱
BYTE m_byNumber; //0:單數,1:復數
//LXHEnd
}SentenceType;
extern SentenceType g_objMorSent;
extern void SearchLxh();
extern void FreeSentence(SentenceType * Sen);
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -