diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1998-03-12 21:04:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1998-03-12 21:04:53 (GMT) |
commit | e4d89c2cd635e38c379a93a569dce473d66e69f4 (patch) | |
tree | 73173c110fe74a679cd3a63060831fd42536986d /src/H5D.c | |
parent | 4e295e1fdaeb1e73ed505482013b000bb62269be (diff) | |
download | hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.zip hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.tar.gz hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.tar.bz2 |
[svn-r319] Removed H5M API from code
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 28 |
1 files changed, 0 insertions, 28 deletions
@@ -23,10 +23,8 @@ static char RcsId[] = "@(#)$Revision$"; #include <H5Eprivate.h> /* Error handling */ #include <H5Gprivate.h> /* Group headers */ #include <H5Hprivate.h> /* Name heap */ -#include <H5Mprivate.h> /* Meta data */ #include <H5MFprivate.h> /* File space allocation header */ #include <H5MMprivate.h> /* Memory management */ -#include <H5Mprivate.h> /* Meta-Object API */ #include <H5Oprivate.h> /* Object headers */ #include <H5Pprivate.h> /* Property lists */ @@ -689,32 +687,6 @@ H5Dextend (hid_t dataset_id, const size_t *size) } /*------------------------------------------------------------------------- - * Function: H5D_find_name - * - * Purpose: This is a callback for H5Mfind_name(). It does the same - * thing as H5Dopen() except it takes an extra argument which - * isn't used. - * - * Return: Success: SUCCEED - * - * Failure: FAIL - * - * Errors: - * - * Programmer: Robb Matzke - * Thursday, December 4, 1997 - * - * Modifications: - * - *------------------------------------------------------------------------- - */ -hid_t -H5D_find_name(hid_t file_id, group_t UNUSED, const char *name) -{ - return H5Dopen(file_id, name); -} - -/*------------------------------------------------------------------------- * Function: H5D_create * * Purpose: Creates a new dataset with name NAME in file F and associates |