refs #27 --HG-- rename : include/wiredtiger.h => include/api_int.h rename : src/support/strerror.c => src/api/strerror.c rename : src/support/version.c => src/api/version.c
27 lines
476 B
C
27 lines
476 B
C
/*-
|
|
* See the file LICENSE for redistribution information.
|
|
*
|
|
* Copyright (c) 2008-2011 WiredTiger, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
struct WT_CURSOR_STD; typedef struct WT_CURSOR_STD WT_CURSOR_STD;
|
|
|
|
struct WT_CURSOR_STD {
|
|
WT_CURSOR interface;
|
|
|
|
WT_DATAITEM key;
|
|
void *keybuf;
|
|
size_t keybufsz;
|
|
WT_DATAITEM value;
|
|
void *valuebuf;
|
|
size_t valuebufsz;
|
|
|
|
#define WT_CURSTD_BADKEY 0x1
|
|
#define WT_CURSTD_BADVALUE 0x2
|
|
#define WT_CURSTD_RAW 0x4
|
|
uint32_t flags;
|
|
};
|