diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2016-08-02 14:11:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2016-08-02 14:11:40 (GMT) |
commit | 613254adca29b7d2c2729c951f70ab0fe34c8f32 (patch) | |
tree | 9ea9d512bdf80d5f56c7f04e610c92089ef6e2b3 /src | |
parent | 13a982acc327899b022d0116275c8ac6645a8592 (diff) | |
download | hdf5-613254adca29b7d2c2729c951f70ab0fe34c8f32.zip hdf5-613254adca29b7d2c2729c951f70ab0fe34c8f32.tar.gz hdf5-613254adca29b7d2c2729c951f70ab0fe34c8f32.tar.bz2 |
[svn-r30249] Add missing define needed for windows compile
Diffstat (limited to 'src')
-rw-r--r-- | src/H5PL.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -72,6 +72,9 @@ /* Clear error - nothing to do */ #define H5PL_CLR_ERROR +/* maximum size for expanding env vars */ +#define EXPAND_BUFFER_SIZE 32767 + typedef const void *(__cdecl *H5PL_get_plugin_info_t)(void); /* Unix support */ @@ -223,7 +226,7 @@ done: FUNC_LEAVE_API(ret_value) } /* end H5PLset_loading_state() */ - + /*------------------------------------------------------------------------- * Function: H5PLget_loading_state * |