[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.
This commit is contained in:
Quincey Koziol 2005-03-10 11:41:28 -05:00
parent 674243b857
commit bdbf2b7909

View File

@ -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 */