Searched defs:BtCursorOps (Results 1 – 1 of 1) sorted by relevance
30 typedef struct BtCursorOps BtCursorOps; typedef73 struct BtCursorOps { struct74 int (*Moveto)(BtCursor*, const void *pKey, int nKey, int *pRes);75 int (*Delete)(BtCursor*);76 int (*Insert)(BtCursor*, const void *pKey, int nKey,78 int (*First)(BtCursor*, int *pRes);79 int (*Last)(BtCursor*, int *pRes);80 int (*Next)(BtCursor*, int *pRes);104 #define btCOps(pCur) (*((BtCursorOps **)(pCur))) argument