From b49f780f7a91a4b697bf3ca1e3b0120ed052d0f0 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Mon, 19 Oct 2015 11:13:07 +0200 Subject: [PATCH] fix compile on VS2013 (need check on VS2015 if this is needed at all) (nw) --- src/osd/osdcomm.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/osd/osdcomm.h b/src/osd/osdcomm.h index 3658fbc4814..9ba457cbb93 100644 --- a/src/osd/osdcomm.h +++ b/src/osd/osdcomm.h @@ -225,6 +225,8 @@ typedef UINT32 FPTR; #ifdef _MSC_VER #include +#include +typedef SSIZE_T ssize_t; #if _MSC_VER == 1900 // < VS2015 #define __LINE__Var 0 #endif