summaryrefslogtreecommitdiff
path: root/src/network/core/packet.h
diff options
context:
space:
mode:
authorKUDr <KUDr@openttd.org>2007-01-31 09:51:22 +0000
committerKUDr <KUDr@openttd.org>2007-01-31 09:51:22 +0000
commit02f17406b197e251d87934937eedd0769f0396e9 (patch)
tree7704e036050ae43b2448c6c4a44553261970adbf /src/network/core/packet.h
parent0f17d2537725aa5d15afa5a4a878cea9df7e5f39 (diff)
downloadopenttd-02f17406b197e251d87934937eedd0769f0396e9.tar.xz
(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'
Diffstat (limited to 'src/network/core/packet.h')
-rw-r--r--src/network/core/packet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/core/packet.h b/src/network/core/packet.h
index 65ddec72c..641fd4ad2 100644
--- a/src/network/core/packet.h
+++ b/src/network/core/packet.h
@@ -24,9 +24,9 @@ typedef uint8 PacketType; ///< Identifier for the packet
* 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 @@ typedef struct Packet {
PacketSize pos;
/** The buffer of this packet */
byte buffer[SEND_MTU];
-} Packet;
+};
Packet *NetworkSend_Init(const PacketType type);