From: Lars Op den Kamp Date: Thu, 9 Feb 2012 00:04:41 +0000 (+0100) Subject: cec: include stdint.h in windows/os-types.h instead of typedef'ing ints X-Git-Tag: upstream/2.2.0~1^2~35^2~132 X-Git-Url: https://git.piment-noir.org/?p=deb_libcec.git;a=commitdiff_plain;h=222e025be3efe7af34fc115cbf0185bfe2ee39f5 cec: include stdint.h in windows/os-types.h instead of typedef'ing ints --- diff --git a/src/lib/platform/windows/os-types.h b/src/lib/platform/windows/os-types.h index 84edac9..9b0dca0 100644 --- a/src/lib/platform/windows/os-types.h +++ b/src/lib/platform/windows/os-types.h @@ -49,21 +49,13 @@ #include #include #include +#include typedef SOCKET tcp_socket_t; #define INVALID_SOCKET_VALUE INVALID_SOCKET typedef HANDLE serial_socket_t; #define INVALID_SERIAL_SOCKET_VALUE INVALID_HANDLE_VALUE -typedef signed __int8 int8_t; -typedef signed __int16 int16_t; -typedef signed __int32 int32_t; -typedef signed __int64 int64_t; -typedef unsigned __int8 uint8_t; -typedef unsigned __int16 uint16_t; -typedef unsigned __int32 uint32_t; -typedef unsigned __int64 uint64_t; - #ifndef _SSIZE_T_DEFINED #ifdef _WIN64 typedef __int64 ssize_t;