Searched defs:BtCursorOps (Results 1 – 1 of 1) sorted by relevance
27 typedef struct BtCursorOps BtCursorOps; typedef70 struct BtCursorOps { struct71 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