From 34fc86bd751f29a342c8568357bea2deb4cb8870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Krause?= Date: Mon, 18 Apr 2016 19:30:00 +0300 Subject: [PATCH] cygwin: imb: Fix build error (wchar_t) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For Win32/Cygwin, the imb plugin was failing to build with the following message: imbapi.h:140:9: error: unknown type name 'wchar_t' typedef wchar_t WCHAR; Signed-off-by: Jörg Krause --- src/plugins/imb/imbapi.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/imb/imbapi.h b/src/plugins/imb/imbapi.h index 6b74029..12e67fb 100644 --- a/src/plugins/imb/imbapi.h +++ b/src/plugins/imb/imbapi.h @@ -35,6 +35,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *----------------------------------------------------------------------*/ #ifndef _WINDEFS_H #define _WINDEFS_H + +#include + #ifndef FALSE #define FALSE 0 #endif