diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-06 16:00:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-08-06 16:00:56 (GMT) |
commit | dd0fbd5b0060ebc7703da8eaab747f7a3025be2a (patch) | |
tree | 2adb270f853a320980403b02a5100d6c84b81290 /src/H5Dproto.h | |
parent | e251f45b8741c7e7bf2dbd4d76a76d67dbfc6da1 (diff) | |
download | hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.zip hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.tar.gz hdf5-dd0fbd5b0060ebc7703da8eaab747f7a3025be2a.tar.bz2 |
[svn-r14] Preliminary checkin of dataset code, to allow the interface & code to be shared.
Everything except the H5Dwrite should be working (or have sections of code
commented about features to implement).
Diffstat (limited to 'src/H5Dproto.h')
-rw-r--r-- | src/H5Dproto.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/H5Dproto.h b/src/H5Dproto.h index 5ffe8a9..362d323 100644 --- a/src/H5Dproto.h +++ b/src/H5Dproto.h @@ -19,10 +19,6 @@ #ifndef H5DPROTO_H #define H5DPROTO_H -typedef struct { - int foo; /* stop compiler from whining right now */ - } H5D_dataset_t; - #if defined c_plusplus || defined __cplusplus extern "C" { @@ -30,11 +26,12 @@ extern "C" /* Functions in H5D.c */ hatom_t H5D_create(hatom_t owner_id, hobjtype_t type, const char *name); +herr_t H5Dset_info(hatom_t oid, hatom_t tid, hatom_t did); herr_t H5D_release(hatom_t oid); #if defined c_plusplus || defined __cplusplus } #endif /* c_plusplus || __cplusplus */ -#endif /* H5PPROTO_H */ +#endif /* H5DPROTO_H */ |