diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-02-27 22:26:23 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-02-27 22:26:23 (GMT) |
commit | 3095b7b7edc254dc5878a12677ddad02eaa7628c (patch) | |
tree | f4f20c5fb8703df20a003fdcfdabfea87c43b1e4 /src/H5Pprivate.h | |
parent | 2583f21941555d53dc1dbcb0f4326d7c20ac9422 (diff) | |
download | hdf5-3095b7b7edc254dc5878a12677ddad02eaa7628c.zip hdf5-3095b7b7edc254dc5878a12677ddad02eaa7628c.tar.gz hdf5-3095b7b7edc254dc5878a12677ddad02eaa7628c.tar.bz2 |
[svn-r3520] Purpose:
Code checkpoint
Description:
Checkpointing generic property code before removing the older [non-generic]
property list implementation and switching all the property lists to use
the generic code.
Generic properties are feature complete and as fully tested as I can
determine.
Platforms tested:
FreeBSD 4.2 (hawkwind)
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index e46dad2..7bd10c0 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -49,6 +49,7 @@ typedef struct H5P_genprop_tag { void *def_value; /* Pointer to default value to pass along to create callback */ H5P_prp_set_func_t set; /* Function to call when a property value is set */ H5P_prp_get_func_t get; /* Function to call when a property value is retrieved */ + H5P_prp_delete_func_t delete; /* Function to call when a property is deleted */ H5P_prp_close_func_t close; /* Function to call when a property is closed */ struct H5P_genprop_tag *next; /* Pointer to the next property in this list */ |