Files
VoidNet/include/NetworkBuffer.hpp
xX-TheDoctor-Xx 72aa8ee0c4 Got tcp receiving for windows done
Callbacks are done - maybe ill add a few more later - i dont know if they will work correctly yet
Fixed the Serialization class
Added internal tags - for now it only has CONNECT and DISCONNECT - maybe ill add more later
Fixed some data type parameters in some functions
2016-07-17 19:59:22 +01:00

19 lines
226 B
C++

#ifndef NETWORK_BUFFER_HPP
#define NETWORK_BUFFER_HPP
#ifdef _MSC_VER
#pragma once
#endif
#include "Defs.hpp"
struct NetworkBuffer
{
NetworkBuffer();
~NetworkBuffer();
uint32 body_size;
byte *body = nullptr;
};
#endif