summary refs log tree commit diff stats
path: root/ext/enchant-wdk/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/enchant-wdk/src/config.h')
-rw-r--r--ext/enchant-wdk/src/config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/enchant-wdk/src/config.h b/ext/enchant-wdk/src/config.h
new file mode 100644
index 00000000..d91c69c6
--- /dev/null
+++ b/ext/enchant-wdk/src/config.h
@@ -0,0 +1,15 @@
+#include <sys/types.h>
+
+#ifndef SSIZE_T_DEFINED
+#ifdef ssize_t
+#undef ssize_t
+#endif
+#ifdef _WIN64
+typedef __int64          ssize_t;
+#else
+typedef _W64 int         ssize_t;
+#endif
+#define SSIZE_T_DEFINED
+#endif
+
+#define ENCHANT_VERSION_STRING "1.6.0"