From 5e1c150024b65971fd3ceb6c4c7b82453c428608 Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Sat, 5 Jan 2019 21:02:55 -0800 Subject: [PATCH] windows compile fix --- ixwebsocket/IXSocket.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ixwebsocket/IXSocket.h b/ixwebsocket/IXSocket.h index 16f556a1..5004d66b 100644 --- a/ixwebsocket/IXSocket.h +++ b/ixwebsocket/IXSocket.h @@ -11,6 +11,11 @@ #include #include +#ifdef _WIN32 +#include +typedef SSIZE_T ssize_t; +#endif + #include "IXEventFd.h" #include "IXCancellationRequest.h"