diff options
Diffstat (limited to 'src/btree.h')
-rw-r--r-- | src/btree.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/btree.h b/src/btree.h index d36f3aa52..78fc61c59 100644 --- a/src/btree.h +++ b/src/btree.h @@ -13,7 +13,7 @@ ** subsystem. See comments in the source code for a detailed description ** of what each interface routine does. ** -** @(#) $Id: btree.h,v 1.47 2004/05/12 19:18:17 drh Exp $ +** @(#) $Id: btree.h,v 1.48 2004/05/18 10:06:25 danielk1977 Exp $ */ #ifndef _BTREE_H_ #define _BTREE_H_ @@ -73,6 +73,12 @@ int sqlite3BtreeCursor( BtCursor **ppCursor /* Returned cursor */ ); +void sqlite3BtreeSetCompare( + BtCursor *, + int(*)(void*,int,const void*,int,const void*), + void* +); + int sqlite3BtreeCloseCursor(BtCursor*); int sqlite3BtreeMoveto(BtCursor*, const void *pKey, i64 nKey, int *pRes); int sqlite3BtreeDelete(BtCursor*); |