summaryrefslogtreecommitdiffstats
path: root/src/H5Apublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1997-09-24 15:32:46 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1997-09-24 15:32:46 (GMT)
commitde68722fb97bdbd063224bcbb984bed32ba8c27e (patch)
treef5084fa68977d4a0130bea45bd997d6b46be416d /src/H5Apublic.h
parent5fdfe1b206dd25ff0ea3f7a74700a3a9c79f6cc2 (diff)
downloadhdf5-de68722fb97bdbd063224bcbb984bed32ba8c27e.zip
hdf5-de68722fb97bdbd063224bcbb984bed32ba8c27e.tar.gz
hdf5-de68722fb97bdbd063224bcbb984bed32ba8c27e.tar.bz2
[svn-r108] Changed all hatom_t types to hid_t. (Isn't 'sed' nifty.. :-)
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r--src/H5Apublic.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h
index d9f79ef..8bc5b7f 100644
--- a/src/H5Apublic.h
+++ b/src/H5Apublic.h
@@ -36,7 +36,7 @@ typedef enum {
} group_t;
/* Type of atoms to return to users */
-typedef int32 hatom_t;
+typedef int32 hid_t;
/* Type of the function to compare objects & keys */
typedef intn (*H5Asearch_func_t)(const VOIDP obj, const VOIDP key);
@@ -46,11 +46,11 @@ typedef intn (*H5Asearch_func_t)(const VOIDP obj, const VOIDP key);
#define GROUP_MASK 0x0F
/* # of bits to use for the Atom index in each atom (assumes 8-bit bytes) */
-#define ATOM_BITS ((sizeof(hatom_t)*8)-GROUP_BITS)
+#define ATOM_BITS ((sizeof(hid_t)*8)-GROUP_BITS)
#define ATOM_MASK 0x0FFFFFFF
/* Combine a Group number and an atom index into an atom */
-#define MAKE_ATOM(g,i) ((((hatom_t)(g)&GROUP_MASK)<<((sizeof(hatom_t)*8)-GROUP_BITS))|((hatom_t)(i)&ATOM_MASK))
+#define MAKE_ATOM(g,i) ((((hid_t)(g)&GROUP_MASK)<<((sizeof(hid_t)*8)-GROUP_BITS))|((hid_t)(i)&ATOM_MASK))
#ifdef __cplusplus
extern "C" {
@@ -108,7 +108,7 @@ intn H5Adestroy_group(group_t grp /* IN: Group to destroy */
Returns atom if successful and FAIL otherwise
*******************************************************************************/
-hatom_t H5Aregister_atom(group_t grp, /* IN: Group to register the object in */
+hid_t H5Aregister_atom(group_t grp, /* IN: Group to register the object in */
const VOIDP object /* IN: Object to attach to atom */
);
@@ -123,7 +123,7 @@ hatom_t H5Aregister_atom(group_t grp, /* IN: Group to register the object in
Returns object ptr if successful and NULL otherwise
*******************************************************************************/
-VOIDP H5Aatom_object(hatom_t atm /* IN: Atom to retrieve object for */
+VOIDP H5Aatom_object(hid_t atm /* IN: Atom to retrieve object for */
);
/******************************************************************************
@@ -137,7 +137,7 @@ VOIDP H5Aatom_object(hatom_t atm /* IN: Atom to retrieve object for */
Returns group if successful and FAIL otherwise
*******************************************************************************/
-group_t H5Aatom_group(hatom_t atm /* IN: Atom to retrieve group for */
+group_t H5Aatom_group(hid_t atm /* IN: Atom to retrieve group for */
);
/******************************************************************************
@@ -151,7 +151,7 @@ group_t H5Aatom_group(hatom_t atm /* IN: Atom to retrieve group for */
Returns atom's object if successful and FAIL otherwise
*******************************************************************************/
-VOIDP H5Aremove_atom(hatom_t atm /* IN: Atom to remove */
+VOIDP H5Aremove_atom(hid_t atm /* IN: Atom to remove */
);
/******************************************************************************
@@ -185,7 +185,7 @@ VOIDP H5Asearch_atom(group_t grp, /* IN: Group to search for the object i
Returns BTRUE/BFALSE/BFAIL
*******************************************************************************/
-intn H5Ais_reserved(hatom_t atm /* IN: Group to search for the object in */
+intn H5Ais_reserved(hid_t atm /* IN: Group to search for the object in */
);
/******************************************************************************