diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-05-07 09:32:45 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-05-07 09:32:45 +0000 |
commit | a9808b31a8c3ebd8fecc7c63afdec7519ccdafd1 (patch) | |
tree | bc3a302d4075e3b9925f115ddfc4b0acf5552a64 /src/sqliteInt.h | |
parent | a58906a8dd74d751c4c9609f828f9043c1a983b1 (diff) | |
download | sqlite-a9808b31a8c3ebd8fecc7c63afdec7519ccdafd1.tar.gz sqlite-a9808b31a8c3ebd8fecc7c63afdec7519ccdafd1.zip |
Add the experimental create_collation_x() api. (CVS 3934)
FossilOrigin-Name: ff49d48f2f025898a0f4ace1fc227e1d367ea89f
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c5917c643..374f1ebe1 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.557 2007/05/05 11:48:54 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.558 2007/05/07 09:32:45 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -646,11 +646,12 @@ struct Column { ** collating sequence may not be read or written. */ struct CollSeq { - char *zName; /* Name of the collating sequence, UTF-8 encoded */ - u8 enc; /* Text encoding handled by xCmp() */ - u8 type; /* One of the SQLITE_COLL_... values below */ - void *pUser; /* First argument to xCmp() */ + char *zName; /* Name of the collating sequence, UTF-8 encoded */ + u8 enc; /* Text encoding handled by xCmp() */ + u8 type; /* One of the SQLITE_COLL_... values below */ + void *pUser; /* First argument to xCmp() */ int (*xCmp)(void*,int, const void*, int, const void*); + void (*xDel)(void*); /* Destructor for pUser */ }; /* |