1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| typedef struct _STU_EXPIRE_DAY
| {
| int m_nYear;
| int m_nMonth;
| int m_nDay;
| int m_nCode;
|
| _STU_EXPIRE_DAY()
| {
| Reset();
| }
| void Reset()
| {
| m_nYear = m_nMonth = m_nDay = 0;
| m_nCode = 32783762;
| }
|
| } STU_EXPIRE_DAY, *pSTU_EXPIRE_DAY;
|
|