#ifndef _CORE_NETWORK_PACKETS_CHAT_SERVER_IPC_H #define _CORE_NETWORK_PACKETS_CHAT_SERVER_IPC_H #include #include namespace Sapphire { namespace Network { namespace Packets { namespace Server { /** * Structural representation of the packet sent by the server as response * to a tell request */ struct FFXIVIpcTell : FFXIVIpcBasePacket< Tell > { uint64_t contentId; uint16_t worldId; uint8_t flags; char receipientName[32]; char msg[1029]; }; /** * Structural representation of the packet sent by the server as response * to a failed tell because of unavailable target player */ struct FFXIVIpcTellErrNotFound : FFXIVIpcBasePacket< TellErrNotFound > { char receipientName[32]; }; } /* Server */ } /* Packets */ } /* Network */ } /* Sapphire */ #endif /*_CORE_NETWORK_PACKETS_CHAT_SERVER_IPC_H*/