hxp
2025-08-25 b2f58170899e8fecbc54ff228d46efee5add3de2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// B5 03 ÅÄÂôÐÐÍæ¼ÒÅÄÂô¼Ç¼ #tagGCPlayerAuctionRecordInfo
 
struct    tagGCPlayerAuctionRecord
{
    char        ItemGUID[40];
    DWORD        FamilyID;        //ÓÐֵʱΪÏÉÃËÅÄÆ·
    BYTE        RecordType;    //¼Ç¼ÀàÐÍ 0-ÎÒµÄÅÄÆ·¼Ç¼ 1-ÏÉÃËÅÄÆ·¼Ç¼ 2-ÎҵľºÅļǼ
    BYTE        RecordResult;    //¼Ç¼½á¹û 0-Á÷ÅÄ 1-ÅÄÂô³É½» 2-»ØÊÕ 3-¾º¼Û³É¹¦ 4-¾º¼Ûʧ°Ü
    char        RecordTime[19];    //¼Ç¼ʱ¼ä yyyy-MM-dd hh:mm:ss
    DWORD        BidderPrice;    //³É½»¼Û¸ñ
    char        BidderName[33];    //³É½»Íæ¼ÒÃû
    DWORD        ItemID;
    WORD        ItemCount;
    WORD        UserDataLen;
    char        UserData[UserDataLen];        //×Ô¶¨ÒåÊý¾Ý
};
 
struct    tagGCPlayerAuctionRecordInfo
{
    tagHead        Head;
    BYTE        Count;
    tagGCPlayerAuctionRecord    AuctionRecordList[Count];
};