# HG changeset patch # User KUDr # Date 1170237082 0 # Node ID d196945976ec67c30abe2ae0c2019df950d61805 # Parent a44e494ecc90d8d16e050e62c4b098c5129edf84 (svn r8479) -Fix (r8459): Silenced VC warning C4099: 'Packet' : type name first seen using 'class' now seen using 'struct' -Codechange: 'typedef struct Packet' changed to 'struct Packet' diff --git a/src/network/core/core.h b/src/network/core/core.h --- a/src/network/core/core.h +++ b/src/network/core/core.h @@ -30,7 +30,7 @@ } NetworkRecvStatus; /** Forward declaration due to circular dependencies */ -class Packet; +struct Packet; /** * SocketHandler for all network sockets in OpenTTD. diff --git a/src/network/core/packet.h b/src/network/core/packet.h --- a/src/network/core/packet.h +++ b/src/network/core/packet.h @@ -24,9 +24,9 @@ * packet. Reading past the size of the packet when receiving * will return all 0 values and "" in case of the string. */ -typedef struct Packet { +struct Packet { /** The next packet. Used for queueing packets before sending. */ - struct Packet *next; + Packet *next; /** The size of the whole packet for received packets. For packets * that will be sent, the value is filled in just before the * actual transmission. */ @@ -35,7 +35,7 @@ PacketSize pos; /** The buffer of this packet */ byte buffer[SEND_MTU]; -} Packet; +}; Packet *NetworkSend_Init(const PacketType type);