diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-10 16:41:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-10 16:41:28 (GMT) |
commit | bdbf2b7909a4fd4585099063d78b2832a38d635b (patch) | |
tree | a373803c04df0e60e1f3dbd1be2773d89948985b /src/H5B2private.h | |
parent | 674243b8571700409c52beffeb85e2d792444061 (diff) | |
download | hdf5-bdbf2b7909a4fd4585099063d78b2832a38d635b.zip hdf5-bdbf2b7909a4fd4585099063d78b2832a38d635b.tar.gz hdf5-bdbf2b7909a4fd4585099063d78b2832a38d635b.tar.bz2 |
[svn-r10178] Purpose:
Correct formatting
Description:
Move some typedefs out of the macro section into the typedef section
Platforms tested:
None, too minor to require any.
Diffstat (limited to 'src/H5B2private.h')
-rw-r--r-- | src/H5B2private.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5B2private.h b/src/H5B2private.h index a61fa64..5c71674 100644 --- a/src/H5B2private.h +++ b/src/H5B2private.h @@ -44,12 +44,6 @@ #define H5B2_ITER_CONT (0) #define H5B2_ITER_STOP (1) -/* Define the operator callback function pointer for H5B2_iterate() */ -typedef int (*H5B2_operator_t)(const void *record, void *op_data); - -/* Define the 'found' callback function pointer for H5B2_find() */ -typedef herr_t (*H5B2_found_t)(const void *record, void *op_data); - /****************************/ /* Library Private Typedefs */ @@ -62,6 +56,12 @@ typedef enum H5B2_subid_t { H5B2_NUM_BTREE_ID /* Number of B-tree IDs (must be last) */ } H5B2_subid_t; +/* Define the operator callback function pointer for H5B2_iterate() */ +typedef int (*H5B2_operator_t)(const void *record, void *op_data); + +/* Define the 'found' callback function pointer for H5B2_find() */ +typedef herr_t (*H5B2_found_t)(const void *record, void *op_data); + /* Comparisons for H5B2_neighbor() call */ typedef enum H5B2_compare_t { H5B2_COMPARE_LESS, /* Records with keys less than query value */ |