mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 22:57:45 +00:00
18 lines
No EOL
369 B
C++
18 lines
No EOL
369 B
C++
#ifndef _UTILNETWORK_H
|
|
#define _UTILNETWORK_H
|
|
|
|
#include "CommonNetwork.h"
|
|
|
|
namespace Core {
|
|
namespace Network {
|
|
namespace Util {
|
|
|
|
|
|
bool bufferToPacketList( const std::vector< uint8_t > &buffer,
|
|
Packets::FFXIVARR_PACKET_HEADER &ipcHeader,
|
|
std::vector< Packets::FFXIVARR_PACKET_RAW > &packetList );
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |