mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[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:
parent
674243b857
commit
bdbf2b7909
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user