summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-01 16:33:59 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-01 16:33:59 (GMT)
commit5992a71fe026ab86845e2f7c662a52fb53e4b0ca (patch)
tree9a428a2ab6ca70db44a2d4ffe3f740ee02e698a3 /src/H5Fprivate.h
parente1c88c9c18ad23ab3ddf7e4cf205369205e5458d (diff)
downloadhdf5-5992a71fe026ab86845e2f7c662a52fb53e4b0ca.zip
hdf5-5992a71fe026ab86845e2f7c662a52fb53e4b0ca.tar.gz
hdf5-5992a71fe026ab86845e2f7c662a52fb53e4b0ca.tar.bz2
[svn-r1291]
added a typedef for windows. uint is UINT on windows.
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index c0a111e..21fb762 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -378,6 +378,9 @@ typedef struct H5F_low_class_t {
* whether that storage is file, local memory, shared memory, network
* distributed global memory, etc.
*/
+#if defined WIN32
+typedef UINT uint;
+#endif
typedef struct H5F_low_t {
const H5F_low_class_t *type;/* What type of file is this? */
haddr_t eof; /* Address of logical end-of-file */