hxp
2025-09-03 08a10b1cab64a04a31759a5c13166d37174e2af0
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
//A0 03 Íæ¼ÒÐÅϢͨÓüǼ #tagUniversalGameRecInfo
 
struct    tagUniversalGameRec
 
{
    DWORD        Time;    //ʱ¼ä
    WORD        StrValue1Len;        //×Ö·û´®1³¤¶È
    char        StrValue1[StrValue1Len];
    WORD        StrValue2Len;        //×Ö·û´®2³¤¶È
    char        StrValue2[StrValue2Len];
    WORD        StrValue3Len;        //×Ö·û´®3³¤¶È
    char        StrValue3[StrValue3Len];
    DWORD        Value1;    //ÊýÖµ1
    DWORD        Value2;    //ÊýÖµ1
    DWORD        Value3;    //ÊýÖµ1
    DWORD        Value4;    //ÊýÖµ1
    DWORD        Value5;    //ÊýÖµ1
};
 
 
struct    tagUniversalGameRecInfo
 
{
    tagHead        Head;
    BYTE        Type;        //ÀàÐÍ
    WORD        Count;        //ÊýÁ¿
    tagUniversalGameRec        UniversalGameRec[Count];        ///size = Count    
};