diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-07-25 17:35:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-07-25 17:35:17 (GMT) |
commit | 2c8c5f96924b1e143d6047b802eda1aed9003d1c (patch) | |
tree | 49d081a241a9fb61c66b2fd6676c2cdba5f57604 /src/H5D.c | |
parent | 2a14d16d805762296e53ab25a6bc8b6a39230c11 (diff) | |
download | hdf5-2c8c5f96924b1e143d6047b802eda1aed9003d1c.zip hdf5-2c8c5f96924b1e143d6047b802eda1aed9003d1c.tar.gz hdf5-2c8c5f96924b1e143d6047b802eda1aed9003d1c.tar.bz2 |
[svn-r2444] Checkpoint the Generic Property implementation. It's not active yet, but it's
close. This shouldn't interfere with other development work. (I think.. :-)
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -102,6 +102,31 @@ H5FL_BLK_DEFINE_STATIC(vlen_vl_buf); H5FL_BLK_DEFINE_STATIC(vlen_fl_buf); +/*------------------------------------------------------------------------- + * Function: H5D_init + * + * Purpose: Initialize the interface from some other layer. + * + * Return: Success: non-negative + * + * Failure: negative + * + * Programmer: Quincey Koziol + * Saturday, March 4, 2000 + * + * Modifications: + * + *------------------------------------------------------------------------- + */ +herr_t +H5D_init(void) +{ + FUNC_ENTER(H5D_init, FAIL); + /* FUNC_ENTER() does all the work */ + FUNC_LEAVE(SUCCEED); +} + + /*-------------------------------------------------------------------------- NAME H5D_init_interface -- Initialize interface-specific information @@ -125,6 +150,8 @@ H5D_init_interface(void) HRETURN_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to initialize interface"); } + +/* Register the default dataset creation & data xfer properties */ FUNC_LEAVE(SUCCEED); } |