From 2ae377404d6f8a45742f46750e71c90c040f82bf Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Tue, 8 Dec 2015 23:07:24 +0000 Subject: Remove non-standard BSD u_int* types. MSVC doesn't like them, and they're not necessary now that we have stdint.h. Remove some compatibility typedefs from BoxPlatform.h and emu.h which are not needed any longer either. --- lib/server/ProtocolWire.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/server/ProtocolWire.h') diff --git a/lib/server/ProtocolWire.h b/lib/server/ProtocolWire.h index ff62b66e..6dee445b 100644 --- a/lib/server/ProtocolWire.h +++ b/lib/server/ProtocolWire.h @@ -26,8 +26,8 @@ typedef struct typedef struct { - u_int32_t mObjSize; - u_int32_t mObjType; + uint32_t mObjSize; + uint32_t mObjType; } PW_ObjectHeader; #define SPECIAL_STREAM_OBJECT_TYPE 0xffffffff -- cgit v1.2.3