diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-09-12 18:26:59 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-09-12 18:26:59 (GMT) |
commit | 1e4406f578c0091c4620368171cf02a4c73f2e88 (patch) | |
tree | bdfaf37922b9102ba700ae37b8dec579b16c0e25 /src/H5Pprivate.h | |
parent | 15c3995e05880c269e0f76eeaa067187fb463867 (diff) | |
download | hdf5-1e4406f578c0091c4620368171cf02a4c73f2e88.zip hdf5-1e4406f578c0091c4620368171cf02a4c73f2e88.tar.gz hdf5-1e4406f578c0091c4620368171cf02a4c73f2e88.tar.bz2 |
[svn-r4437] Purpose:
Adding Feature
Description:
Added new H5Pcopy_prop function to copy a property (value) from one property
list or class to another.
Platforms tested:
FreeBSD 4.4 (hawkwind)
Diffstat (limited to 'src/H5Pprivate.h')
-rw-r--r-- | src/H5Pprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Pprivate.h b/src/H5Pprivate.h index 4f79406..fa67af4 100644 --- a/src/H5Pprivate.h +++ b/src/H5Pprivate.h @@ -65,8 +65,8 @@ typedef struct H5P_genclass_tag { unsigned plists; /* Number of property lists that have been created since the last modification to the class */ unsigned classes; /* Number of classes that have been derived since the last modification to the class */ unsigned ref_count; /* Number of oustanding ID's open on this class object */ - unsigned internal:1; /* Whether this class is internal to the library or not */ - unsigned deleted:1; /* Whether this class has been deleted and is waiting for dependent classes & proplists to close */ + unsigned internal; /* Whether this class is internal to the library or not */ + unsigned deleted; /* Whether this class has been deleted and is waiting for dependent classes & proplists to close */ /* Callback function pointers & info */ H5P_cls_create_func_t create_func; /* Function to call when a property list is created */ |