diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-22 22:49:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-10-22 22:49:16 (GMT) |
commit | 671ed571239ccad6c86918dfe04580c73d1b130e (patch) | |
tree | f22698c958e5a4d497e1c7dfb69d1518915c9d2f /src/H5D.c | |
parent | f571a762fd5894f551c1f906641af229d839c6a9 (diff) | |
download | hdf5-671ed571239ccad6c86918dfe04580c73d1b130e.zip hdf5-671ed571239ccad6c86918dfe04580c73d1b130e.tar.gz hdf5-671ed571239ccad6c86918dfe04580c73d1b130e.tar.bz2 |
[svn-r776] Fixed references, object references should be working now.
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -2261,6 +2261,32 @@ H5D_typeof (H5D_t *dset) /*------------------------------------------------------------------------- + * Function: H5D_get_file + * + * Purpose: Returns the dataset's file pointer. + * + * Return: Success: Ptr to the dataset's file pointer. + * + * Failure: NULL + * + * Programmer: Quincey Koziol + * Thursday, October 22, 1998 + * + * Modifications: + * + *------------------------------------------------------------------------- + */ +H5F_t * +H5D_get_file (const H5D_t *dset) +{ + FUNC_ENTER (H5D_get_file, NULL); + assert (dset); + assert (dset->ent.file); + FUNC_LEAVE (dset->ent.file); +} + + +/*------------------------------------------------------------------------- * Function: H5D_init_storage * * Purpose: Initialize the data for a new dataset. If a selection is |