Skip to content

Commit

Permalink
0.76
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Oct 9, 2024
1 parent 8f5f19c commit 272d290
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
0.76 2024-10-09
- handle PDL 2.064+ types like signed byte (#5) - thanks @a-shahba for report

0.75 2021-08-08
Expand Down
8 changes: 4 additions & 4 deletions hdf5.pd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use Config;

our $VERSION = '0.75';
our $VERSION = '0.76';
pp_setversion(qq{'$VERSION'});

# Necessary includes for .xs file
Expand Down Expand Up @@ -1247,13 +1247,13 @@ hid_t H5Dopen (hid_t loc_id, const char *name);
herr_t H5Dwrite (hid_t dataset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t xfer_plist_id, const char * buf);
herr_t H5Dextend(hid_t dataset_id, const hsize_t *size);
# H5Dread buf type changed from void * to I8 * so that is can be catergorized separately in the
# typemap as a T_PVI traslation
# typemap as a T_PVI translation
herr_t H5Dread (hid_t dataset_id, hid_t mem_type_id, hid_t mem_space_id, hid_t file_space_id, hid_t xfer_plist_id, I8 * buf);
hid_t H5Dclose (hid_t dataset_id);
hid_t H5Dget_type(hid_t dataset_id);
hid_t H5Dget_space(hid_t dataset_id);
# H5Dvlen_reclaim buf type changed from void * to I8 * so that is can be catergorized separately in the
# typemap as a T_PVI traslation
# H5Dvlen_reclaim buf type changed from void * to I8 * so that it can be categorised separately in the
# typemap as a T_PVI translation
herr_t H5Dvlen_reclaim(hid_t type_id, hid_t space_id, hid_t plist_id, I8 *buf);

hid_t H5Gcreate(hid_t loc_id, const char *name, size_t size_hint);
Expand Down

0 comments on commit 272d290

Please sign in to comment.