~ubuntu-branches/ubuntu/natty/pytables/natty-updates

« back to all changes in this revision

Viewing changes to src/H5VLARRAY.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexandre Fayolle
  • Date: 2006-06-28 10:45:03 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20060628104503-cc251q5o5j3e2k10
  * Fixed call to pyversions in debian/rules which failed on recent versions 
    of pyversions
  * Fixed clean rule in debian/rules which left the stamp files behind
  * Acknowledge NMU
  * Added Alexandre Fayolle to uploaders

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
extern "C" {
8
8
#endif
9
9
 
10
 
herr_t H5VLARRAYmake( hid_t loc_id, 
 
10
herr_t H5VLARRAYmake( hid_t loc_id,
11
11
                      const char *dset_name,
 
12
                      const char *class_,
12
13
                      const char *title,
13
14
                      const char *flavor,
14
15
                      const char *obversion,    /* The Array VERSION number */
15
 
                      const int rank, 
16
 
                      const int scalar, 
 
16
                      const int rank,
 
17
                      const int scalar,
17
18
                      const hsize_t *dims,
18
19
                      hid_t type_id,
19
20
                      hsize_t chunk_size,
24
25
                      int   fletcher32,
25
26
                      const void *data);
26
27
 
27
 
herr_t H5VLARRAYappend_records( hid_t loc_id, 
28
 
                                const char *dset_name,
 
28
herr_t H5VLARRAYappend_records( hid_t dataset_id,
 
29
                                hid_t type_id,
29
30
                                int nobjects,
30
31
                                hsize_t nrecords,
31
32
                                const void *data );
32
33
 
33
 
herr_t H5VLARRAYmodify_records( hid_t loc_id, 
34
 
                                const char *dset_name,
 
34
herr_t H5VLARRAYmodify_records( hid_t dataset_id,
 
35
                                hid_t type_id,
35
36
                                hsize_t nrow,
36
37
                                int nobjects,
37
38
                                const void *data );
38
39
 
39
 
herr_t H5VLARRAYread( hid_t loc_id, 
40
 
                      const char *dset_name,
41
 
                      hsize_t start,
42
 
                      hsize_t nrows,
43
 
                      hsize_t step,
44
 
                      hvl_t *data,
45
 
                      hsize_t *datalen );
46
 
 
47
 
herr_t H5VLARRAYget_ndims( hid_t loc_id, 
48
 
                           const char *dset_name,
 
40
herr_t H5VLARRAYget_ndims( hid_t dataset_id,
 
41
                           hid_t type_id,
49
42
                           int *rank );
50
43
 
51
 
hid_t H5VLARRAYget_info( hid_t   loc_id, 
52
 
                         char    *dset_name,
53
 
                         hsize_t *nrecords,
54
 
                         hsize_t *base_dims,
55
 
                         hid_t   *base_type_id,
56
 
                         char    *base_byteorder);
 
44
herr_t H5VLARRAYget_info( hid_t   dataset_id,
 
45
                          hid_t   type_id,
 
46
                          hsize_t *nrecords,
 
47
                          hsize_t *base_dims,
 
48
                          hid_t   *base_type_id,
 
49
                          char    *base_byteorder);
57
50
 
58
51
 
59
52
#ifdef __cplusplus