Пример #1
0
void
mhdf_readAdjacency( hid_t table_id,
                    long offset,
                    long count,
                    hid_t type,
                    void* data,
                    mhdf_Status* status )
{
  API_BEGIN;
  mhdf_read_data( table_id, offset, count, type, data, H5P_DEFAULT, status );
  API_END;
}
Пример #2
0
void 
mhdf_readPolyConnIDs( hid_t table_id,
                      long offset,
                      long count,
                      hid_t hdf_integer_type,
                      void* id_list,
                      mhdf_Status* status )
{
  API_BEGIN;
  mhdf_read_data( table_id, offset, count, hdf_integer_type, id_list, H5P_DEFAULT, status );
  API_END;
}
Пример #3
0
void 
mhdf_readConnectivity( hid_t table_id,
                       long offset,
                       long count,
                       hid_t hdf_integer_type,
                       void* nodes,
                       mhdf_Status* status )
{
  API_BEGIN;
  mhdf_read_data( table_id, offset, count, hdf_integer_type, nodes, H5P_DEFAULT,status );
  API_END;
}
Пример #4
0
void
mhdf_readAdjacencyWithOpt( hid_t table_id,
                    long offset,
                    long count,
                    hid_t type,
                    void* data,
                    hid_t prop,
                    mhdf_Status* status )
{
  API_BEGIN;
  mhdf_read_data( table_id, offset, count, type, data, prop, status );
  API_END;
}
Пример #5
0
void 
mhdf_readPolyConnIDsWithOpt( hid_t table_id,
                      long offset,
                      long count,
                      hid_t hdf_integer_type,
                      void* id_list,
                      hid_t prop,
                      mhdf_Status* status )
{
  API_BEGIN;
  mhdf_read_data( table_id, offset, count, hdf_integer_type, id_list, prop, status );
  API_END;
}
Пример #6
0
void 
mhdf_readConnectivityWithOpt( hid_t table_id,
                       long offset,
                       long count,
                       hid_t hdf_integer_type,
                       void* nodes,
                       hid_t prop,
                       mhdf_Status* status )
{
  API_BEGIN;
  mhdf_read_data( table_id, offset, count, hdf_integer_type, nodes, prop, status );
  API_END;
}