1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| //B3 04 Éç½»ÈËȺ»ù±¾ÐÅÏ¢ #tagGCSocialPlayers
|
| struct tagGCSocialPlayer
| {
| DWORD PlayerID;
| char PlayerName[33];
| BYTE Job;
| WORD LV; //µÈ¼¶
| WORD RealmLV; //¾³½ç
| BYTE OnlineType; //0²»ÔÚÏß 1ÔÚÏß 2ÍÑ»úÔÚÏß
| DWORD Face; //»ù±¾Á³ÐÍ
| DWORD FacePic; //Í·Ïñ¿ò
| };
|
|
| struct tagGCSocialPlayers
| {
| tagHead Head;
| WORD Count;
| tagGCSocialPlayer Player[Count]; //size = Count
| };
|
|