diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-02 18:38:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-11-02 18:38:22 (GMT) |
commit | 55b31c57b5fab7a8952041149774e60136391b57 (patch) | |
tree | 1b1bbc4c37f6f2de57ee881abf52a82227ca14a9 /src/H5Lprivate.h | |
parent | d90d6ffdce1f1e3426c6b7f5dc83809e09749079 (diff) | |
download | hdf5-55b31c57b5fab7a8952041149774e60136391b57.zip hdf5-55b31c57b5fab7a8952041149774e60136391b57.tar.gz hdf5-55b31c57b5fab7a8952041149774e60136391b57.tar.bz2 |
[svn-r12846] Description:
Further minor tweaking of property list class initialization macros, etc.
Tested on:
FreeBSD/32 4.11 (sleipnir) w/threadsafe & debugging turned on
Linux/32 2.4 (heping) w/FORTRAN & C++
Linux/64 2.4 (mir) w/build-all & 1.6 compat enabled
AIX/32 5.x (copper) w/FORTRAN & parallel
Diffstat (limited to 'src/H5Lprivate.h')
-rw-r--r-- | src/H5Lprivate.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/H5Lprivate.h b/src/H5Lprivate.h index 1816e7d..d41a18a 100644 --- a/src/H5Lprivate.h +++ b/src/H5Lprivate.h @@ -13,7 +13,7 @@ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* - * This file contains private information about the H5DL module + * This file contains private information about the H5L module * for dealing with links in an HDF5 file. */ #ifndef _H5Lprivate_H @@ -26,6 +26,10 @@ #include "H5Gprivate.h" #include "H5Oprivate.h" +/**************************/ +/* Library Private Macros */ +/**************************/ + /* Default number of soft links to traverse */ #define H5L_NUM_LINKS 16 @@ -36,6 +40,20 @@ #define H5L_ACS_NLINKS_NAME "max soft links" /* Number of soft links to traverse */ #define H5L_ACS_ELINK_PREFIX_NAME "external link prefix" /* External link prefix */ +/****************************/ +/* Library Private Typedefs */ +/****************************/ + + +/*****************************/ +/* Library Private Variables */ +/*****************************/ + + +/******************************/ +/* Library Private Prototypes */ +/******************************/ + /* General operations on links */ H5_DLL herr_t H5L_link(H5G_loc_t *new_loc, const char *new_name, H5G_loc_t *obj_loc, hid_t lcpl_id, hid_t lapl_id, hid_t dxpl_id); |