cec: include stdint.h in windows/os-types.h instead of typedef'ing ints
[deb_libcec.git] / src / lib / platform / windows / os-types.h
index 84edac9e414244c65b51d7535d92d38add4f3bb6..9b0dca023c765e05fd3aa33312d4e7e5d1942195 100644 (file)
 #include <errno.h>
 #include <stddef.h>
 #include <process.h>
+#include <stdint.h>
 
 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;