[svn-r1291]

added a typedef for windows.  uint is UINT on windows.
This commit is contained in:
Patrick Lu 1999-06-01 11:33:59 -05:00
parent e1c88c9c18
commit 5992a71fe0

View File

@ -378,6 +378,9 @@ typedef struct H5F_low_class_t {
* whether that storage is file, local memory, shared memory, network * whether that storage is file, local memory, shared memory, network
* distributed global memory, etc. * distributed global memory, etc.
*/ */
#if defined WIN32
typedef UINT uint;
#endif
typedef struct H5F_low_t { typedef struct H5F_low_t {
const H5F_low_class_t *type;/* What type of file is this? */ const H5F_low_class_t *type;/* What type of file is this? */
haddr_t eof; /* Address of logical end-of-file */ haddr_t eof; /* Address of logical end-of-file */