1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// AD 01 ÌػݻÐÅÏ¢ #tagGCTeHuiActivityInfoList
 
struct    tagGCTeHuiActivityInfo
{
    tagHead        Head;
    BYTE        ActivityType;    // »î¶¯ÀàÐÍ
    DWORD        ActivityValue;    // »î¶¯Öµ
    DWORD        StartDate;    // ¿ªÊ¼Ê±¼ätime
    DWORD        EndDate;        // ½áÊøÊ±¼ätime
};
 
struct    tagGCTeHuiActivityInfoList
 
{
    tagHead        Head;
    BYTE        ActivityCount;        //»î¶¯ÐÅÏ¢¸öÊý
    tagGCTeHuiActivityInfo    ActivityInfoList[ActivityCount];    //»î¶¯ÐÅÏ¢Áбí
};