#include <db.h> DB_MULTIPLE_KEY_RESERVE_NEXT(void *pointer, DBT *dbt, void *kdest, size_t klen, void *ddest, size_t dlen);
Reserves space for a key / data pair in a bulk buffer.
The pointer parameter is a variable that must have been initialized by a call to DB_MULTIPLE_WRITE_INIT.
The kdest parameter is set to the location reserved in the bulk buffer for the key.
This parameter is set to NULL if the data item does not fit in the buffer.
The ddest parameter is set to the location reserved in the bulk buffer for the data item.
This parameter is set to NULL if the data item does not fit in the buffer.