hxp
2025-05-16 0dbe621c75e43d7a8cd29586fb0ecb5105773bcf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// A3 62 ÓʼþÁбí #tagMCMailList
 
struct    tagMCMailItem
{
    DWORD        ItemID;        //ÎïÆ·ID
    DWORD        Count;        //ÊýÁ¿
    BYTE        IsBind;        //ÊÇ·ñ°ó¶¨
    WORD        UserDataLen;
    char        UserData[UserDataLen];    //×Ô¶¨ÒåÊý¾Ý    
};
 
struct    tagMCMail
{
    char        GUID[36];    //ÓʼþGUID
    BYTE        Type;        //ÓʼþÀàÐÍ£¬ÔÝʱĬÈÏ0
    char        CreateTime[30];    //´´½¨Ê±¼ä
    BYTE        LimitDays;    //ÓÐЧÌìÊý
    BYTE        TitleLen;
    char        Title[TitleLen];    //±êÌâ
    WORD        TextLen;
    char        Text[TextLen];    //ÄÚÈÝ
    BYTE        MailState;    //Óʼþ״̬£º 0-δ֪£»1-δ¶Á£»2-ÒѶÁ£»3-ÒÑÁ죻
    BYTE        Count;        //ÎïÆ·Êý
    tagMCMailItem    Items[Count];    //ÎïÆ·ÐÅÏ¢
};
 
struct    tagMCMailList
{
    tagHead        Head;
    BYTE        IsServerMail;    //ÊÇ·ñÈ«·þÓʼþ£¬È繫¸æ¡¢Î¬»¤¡¢¸üС¢²¹³¥µÈÖØÒªÓʼþ
    WORD        Count;
    tagMCMail    MailList[Count];    //ÓʼþÁбí
};