30 lines
405 B
C
30 lines
405 B
C
#include "stdafx.h"
|
|
#include <string.h>
|
|
|
|
#pragma pack(1)
|
|
|
|
#define WEB_DELETE_EQU 1
|
|
#define SUP_MAX_ITEM_COUNT 10
|
|
|
|
typedef struct{
|
|
int iPacketSize;
|
|
short sCategory;
|
|
}PacketHeader;
|
|
|
|
typedef struct
|
|
{
|
|
SLOTCODE ItemCode;
|
|
SLOTIDX SlotIdx;
|
|
DURATYPE Dura;
|
|
}SlotItem ;
|
|
|
|
typedef struct{
|
|
PacketHeader header;
|
|
unsigned int charGuid;
|
|
SLOTIDX itemSize;
|
|
SlotItem item[SUP_MAX_ITEM_COUNT];
|
|
|
|
|
|
}PacketDeleteItem;
|
|
|