From ea4c0557d0b7c2317e03d3d3aaefd6063c99f091 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 26 Mar 2024 01:45:33 +0100 Subject: DWORD replaced with std::uint32_t in non-Win32-related parts With the exception of some netcode. This brings some important questions and solidifies me in pursuing better abstract over definitions. It might also be a good idea to have distinct aliases or compound types for time and (net) identifiers. --- NetEx/NetMsg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'NetEx') diff --git a/NetEx/NetMsg.h b/NetEx/NetMsg.h index fd4850c..e675c95 100644 --- a/NetEx/NetMsg.h +++ b/NetEx/NetMsg.h @@ -39,7 +39,7 @@ public: std::uint32_t Sequence() const { return msgid; } std::uint32_t NetID() const { return netid; } - const std::uint8_t* Data() const { return data; } + std::uint8_t* Data() { return data; } std::uint8_t Type() const { return data ? *data : 0; } int Length() const { return len; } std::uint8_t Flags() const { return flags; } -- cgit v1.1