1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| // A0 08 Íæ¼Ò¼Ç¼ÐÅÏ¢ #tagGCPlayerRecInfo
|
| struct tagGCPlayerRec
| {
| DWORD Time; //ʱ¼ä
| DWORD Value1; //Öµ1
| DWORD Value2; //Öµ2
| DWORD Value3; //Öµ3
| DWORD Value4; //Öµ4
| DWORD Value5; //Öµ5
| DWORD Value6; //Öµ6
| DWORD Value7; //Öµ7
| DWORD Value8; //Öµ8
| WORD UserDataLen; //À©Õ¹Êý¾Ý³¤¶È
| char UserData[UserDataLen]; //À©Õ¹Êý¾Ý
| };
|
| struct tagGCPlayerRecInfo
| {
| tagHead Head;
| BYTE Type; //ÀàÐÍ
| WORD Count; //ÊýÁ¿
| tagGCPlayerRec PlayerRecList[Count];
| };
|
|