diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-10-21 15:52:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-10-21 15:52:54 (GMT) |
commit | 275d19661e1f06f95c57e5f81635bb0e5e2c357a (patch) | |
tree | eb393a99ea9d67984c9191597b584c1001ca0515 /src/H5Dpublic.h | |
parent | 155d762b9c4d60e0455f3bc71700a289ad18e6a4 (diff) | |
download | hdf5-275d19661e1f06f95c57e5f81635bb0e5e2c357a.zip hdf5-275d19661e1f06f95c57e5f81635bb0e5e2c357a.tar.gz hdf5-275d19661e1f06f95c57e5f81635bb0e5e2c357a.tar.bz2 |
[svn-r11593] Purpose:
Code cleanup
Description:
Clean up & standardize a bit in preparation for coding standards
discussion.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r-- | src/H5Dpublic.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h index 3595bf2..83074f2 100644 --- a/src/H5Dpublic.h +++ b/src/H5Dpublic.h @@ -22,6 +22,14 @@ #include "H5public.h" #include "H5Ipublic.h" +/*****************/ +/* Public Macros */ +/*****************/ + +/*******************/ +/* Public Typedefs */ +/*******************/ + /* Values for the H5D_LAYOUT property */ typedef enum H5D_layout_t { H5D_LAYOUT_ERROR = -1, @@ -65,6 +73,13 @@ typedef enum H5D_fill_value_t { H5D_FILL_VALUE_USER_DEFINED =2 } H5D_fill_value_t; +/********************/ +/* Public Variables */ +/********************/ + +/*********************/ +/* Public Prototypes */ +/*********************/ #ifdef __cplusplus extern "C" { #endif @@ -102,4 +117,5 @@ H5_DLL herr_t H5Ddebug(hid_t dset_id); #ifdef __cplusplus } #endif -#endif +#endif /* _H5Dpublic_H */ + |