diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2012-10-05 02:25:37 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2012-10-05 02:25:37 (GMT) |
commit | cda42fdc77e5065fc4cd460a3eb508e4ca2ebba0 (patch) | |
tree | 5d32921750c5d88b3b4ef33f7710171156b0faea /src/H5Ppkg.h | |
parent | 223bdd117305e813a137c1874ec8c7327968ccf3 (diff) | |
download | hdf5-cda42fdc77e5065fc4cd460a3eb508e4ca2ebba0.zip hdf5-cda42fdc77e5065fc4cd460a3eb508e4ca2ebba0.tar.gz hdf5-cda42fdc77e5065fc4cd460a3eb508e4ca2ebba0.tar.bz2 |
[svn-r22866] Description:
Correct use of 'uint8_t' parameter type in public header file (which was
causing Windows builds to fail).
Tested on:
Mac OSX/64 10.7.5 (amazon) w/debug
(too minor to require h5committest)
Diffstat (limited to 'src/H5Ppkg.h')
-rw-r--r-- | src/H5Ppkg.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/H5Ppkg.h b/src/H5Ppkg.h index b4c2405..9d48c60 100644 --- a/src/H5Ppkg.h +++ b/src/H5Ppkg.h @@ -207,18 +207,18 @@ H5_DLL hid_t H5P__new_plist_of_type(H5P_plist_type_t type); H5_DLL herr_t H5P__encode(const H5P_genplist_t *plist, hbool_t enc_all_prop, void *buf, size_t *nalloc); H5_DLL hid_t H5P__decode(const void *buf); -H5_DLL herr_t H5P__encode_hsize_t(const void *value, uint8_t **pp, size_t *size); -H5_DLL herr_t H5P__encode_size_t(const void *value, uint8_t **pp, size_t *size); -H5_DLL herr_t H5P__encode_unsigned(const void *value, uint8_t **pp, size_t *size); -H5_DLL herr_t H5P__encode_uint8_t(const void *value, uint8_t **pp, size_t *size); -H5_DLL herr_t H5P__encode_hbool_t(const void *value, uint8_t **pp, size_t *size); -H5_DLL herr_t H5P__encode_double(const void *value, uint8_t **pp, size_t *size); -H5_DLL herr_t H5P__decode_hsize_t(const uint8_t **pp, void *value); -H5_DLL herr_t H5P__decode_size_t(const uint8_t **pp, void *value); -H5_DLL herr_t H5P__decode_unsigned(const uint8_t **pp, void *value); -H5_DLL herr_t H5P__decode_uint8_t(const uint8_t **pp, void *value); -H5_DLL herr_t H5P__decode_hbool_t(const uint8_t **pp, void *value); -H5_DLL herr_t H5P__decode_double(const uint8_t **pp, void *value); +H5_DLL herr_t H5P__encode_hsize_t(const void *value, void **_pp, size_t *size); +H5_DLL herr_t H5P__encode_size_t(const void *value, void **_pp, size_t *size); +H5_DLL herr_t H5P__encode_unsigned(const void *value, void **_pp, size_t *size); +H5_DLL herr_t H5P__encode_uint8_t(const void *value, void **_pp, size_t *size); +H5_DLL herr_t H5P__encode_hbool_t(const void *value, void **_pp, size_t *size); +H5_DLL herr_t H5P__encode_double(const void *value, void **_pp, size_t *size); +H5_DLL herr_t H5P__decode_hsize_t(const void **_pp, void *value); +H5_DLL herr_t H5P__decode_size_t(const void **_pp, void *value); +H5_DLL herr_t H5P__decode_unsigned(const void **_pp, void *value); +H5_DLL herr_t H5P__decode_uint8_t(const void **_pp, void *value); +H5_DLL herr_t H5P__decode_hbool_t(const void **_pp, void *value); +H5_DLL herr_t H5P__decode_double(const void **_pp, void *value); /* Testing functions */ #ifdef H5P_TESTING |