11 hid_t space = H5Screate_simple( 1, &
dim, NULL );
16 #if defined( H5Eget_auto_vers ) && H5Eget_auto_vers > 1
17 if( 0 <= H5Eget_auto( H5E_DEFAULT, &fptr, &fdata ) ) H5Eset_auto( H5E_DEFAULT, 0, 0 );
19 if( 0 <= H5Eget_auto( &fptr, &fdata ) ) H5Eset_auto( 0, 0 );
22 hsize_t start = 1, count = 5;
23 H5Sselect_hyperslab( space, H5S_SELECT_SET, &start, 0, &count, 0 );
25 if( 0 <= H5Sselect_hyperslab( space, H5S_SELECT_APPEND, &start, 0, &count, 0 ) ) result =
true;
29 #if defined( H5Eset_auto_vers ) && H5Eset_auto_vers > 1
30 H5Eset_auto( H5E_DEFAULT, fptr, fdata );
32 H5Eset_auto( fptr, fdata );