Home
last modified time | relevance | path

Searched defs:BtCursorOps (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.h27 typedef struct BtCursorOps BtCursorOps; typedef
70 struct BtCursorOps { struct
71 int (*Moveto)(BtCursor*, const void *pKey, int nKey, int *pRes);
72 int (*Delete)(BtCursor*);
73 int (*Insert)(BtCursor*, const void *pKey, int nKey,
75 int (*First)(BtCursor*, int *pRes);
76 int (*Last)(BtCursor*, int *pRes);
77 int (*Next)(BtCursor*, int *pRes);
101 #define btCOps(pCur) (*((BtCursorOps **)(pCur))) argument