//03 02 Íæ¼ÒÁìÈ¡²¹³¥½á¹û#tagGMRequestCompensationResult
|
|
struct tagGMCompensationItem
|
{
|
DWORD ItemID; //ÎïÆ·ID
|
DWORD Count; //ÊýÁ¿
|
BYTE IsBind; //ÊÇ·ñ°ó¶¨
|
DWORD UserDataLen;
|
char UserData[UserDataLen]; //×Ô¶¨ÒåÊý¾Ý
|
};
|
struct tagGMRequestCompensationResult
|
{
|
tagHead Head;
|
DWORD PlayerID; //Íæ¼ÒID
|
BYTE CompensationType; //²¹³¥ÀàÐÍ 0 È«·þ 1 ¸öÈË
|
char GUID[40]; //¶ÔÓ¦µÄ²¹³¥ID
|
DWORD TextLen; //ÎÄ×ÖÄÚÈݳ¤¶È
|
char Text[TextLen]; //ÎÄ×ÖÄÚÈÝ
|
BYTE Count; //µ±Ç°²¹³¥ÎïÆ·Êý
|
DWORD Gold; //ÏÉÓñ
|
DWORD GoldPaper; //°ó¶¨ÏÉÓñ
|
DWORD Silver; //ÍÇ®
|
tagGMCompensationItem Items[Count]; //²¹³¥ÎïÆ·ÐÅÏ¢
|
};
|