From bdbf2b7909a4fd4585099063d78b2832a38d635b Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Thu, 10 Mar 2005 11:41:28 -0500 Subject: [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. --- src/H5B2private.h | 12 ++++++------ 1 file 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 */ -- cgit v0.12