mrDarker
2025-07-10 38672b1904bcb6855041f9f7d7d23ed97c0c1d07
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;