Пример #1
0
void
mhdf_writeAdjacency( hid_t table_id,
                     long offset,
                     long count,
                     hid_t type,
                     const void* data,
                     mhdf_Status* status )
{
  API_BEGIN;
  mhdf_write_data( table_id, offset, count, type, data, H5P_DEFAULT, status );
  API_END;
}
Пример #2
0
void
mhdf_writePolyConnIDs( hid_t table_id,
                       long offset,
                       long count,
                       hid_t hdf_integer_type,
                       const void* id_list,
                       mhdf_Status* status )
{
  API_BEGIN;
  mhdf_write_data( table_id, offset, count, hdf_integer_type, id_list, H5P_DEFAULT, status );
  API_END;
}
Пример #3
0
void
mhdf_writeConnectivity( hid_t table_id,
                        long offset,
                        long count,
                        hid_t hdf_integer_type,
                        const void* nodes,
                        mhdf_Status* status )
{
  API_BEGIN;
  mhdf_write_data( table_id, offset, count, hdf_integer_type, nodes, H5P_DEFAULT, status );
  API_END;
}
Пример #4
0
void
mhdf_writeAdjacencyWithOpt( hid_t table_id,
                     long offset,
                     long count,
                     hid_t type,
                     const void* data,
                     hid_t prop,
                     mhdf_Status* status )
{
  API_BEGIN;
  mhdf_write_data( table_id, offset, count, type, data, prop, status );
  API_END;
}
Пример #5
0
void
mhdf_writePolyConnIDsWithOpt( hid_t table_id,
                       long offset,
                       long count,
                       hid_t hdf_integer_type,
                       const void* id_list,
                       hid_t prop,
                       mhdf_Status* status )
{
  API_BEGIN;
  mhdf_write_data( table_id, offset, count, hdf_integer_type, id_list, prop, status );
  API_END;
}
Пример #6
0
void
mhdf_writeConnectivityWithOpt( hid_t table_id,
                        long offset,
                        long count,
                        hid_t hdf_integer_type,
                        const void* nodes,
                        hid_t prop,
                        mhdf_Status* status )
{
  API_BEGIN;
  mhdf_write_data( table_id, offset, count, hdf_integer_type, nodes, prop, status );
  API_END;
}