summaryrefslogtreecommitdiffstats
path: root/src/H5public.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5public.h')
-rw-r--r--src/H5public.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5public.h b/src/H5public.h
index a487de7..d870851 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -82,8 +82,14 @@ typedef int hbool_t;
* with small address spaces these are defined to be larger.
*/
#if defined(HAVE_LARGE_HSIZET) && SIZEOF_SIZE_T<SIZEOF_LONG_LONG
+#if defined(WIN32)
+typedef unsigned __int64 hsize_t;
+typedef signed __int64 hssize_t;
+typedef signed int ssize_t;
+#else
typedef unsigned long long hsize_t;
typedef signed long long hssize_t;
+#endif
#else
typedef size_t hsize_t;
typedef ssize_t hssize_t;