diff options
author | drh <drh@noemail.net> | 2010-07-26 18:43:40 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-07-26 18:43:40 +0000 |
commit | eafc43b1569260e5ee1d0268cae7fa8ec619d7b8 (patch) | |
tree | 22c5baa7268f28dce01831872592a9dd26642fcc /src/sqlite.h.in | |
parent | d2de9f4e6802d0f3c847a6f1dd5aa49a0eef70fb (diff) | |
download | sqlite-eafc43b1569260e5ee1d0268cae7fa8ec619d7b8.tar.gz sqlite-eafc43b1569260e5ee1d0268cae7fa8ec619d7b8.zip |
Add the SQLITE_STATUS_MALLOC_COUNT option for sqlite3_status().
FossilOrigin-Name: 8f8e442b3af553753e25c304efa289b626e3a227
Diffstat (limited to 'src/sqlite.h.in')
-rw-r--r-- | src/sqlite.h.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 89bcf1c40..0c71848d3 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -5204,6 +5204,7 @@ int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); #define SQLITE_STATUS_PARSER_STACK 6 #define SQLITE_STATUS_PAGECACHE_SIZE 7 #define SQLITE_STATUS_SCRATCH_SIZE 8 +#define SQLITE_STATUS_MALLOC_COUNT 9 /* ** CAPI3REF: Database Connection Status |