Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Disable the session extension API if SQLITE_ENABLE_SESSION is not defined. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
71af9ac165ac02272f4886f69bd9ab47 |
User & Date: | drh 2016-05-04 21:06:21.506 |
Context
2016-05-05
| ||
11:53 | Renumber internal constants in the printf() implemention for a small performance improvement. (check-in: 69d11447f4 user: drh tags: trunk) | |
2016-05-04
| ||
21:06 | Disable the session extension API if SQLITE_ENABLE_SESSION is not defined. (check-in: 71af9ac165 user: drh tags: trunk) | |
19:04 | Fix typo in comment. No changes to code. (check-in: 6c43ba1c87 user: mistachkin tags: trunk) | |
Changes
Changes to ext/session/sqlite3session.h.
1 |
| | | 1 2 3 4 5 6 7 8 9 | #if !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) #define __SQLITESESSION_H_ 1 /* ** Make sure we can call this stuff from C++. */ #ifdef __cplusplus extern "C" { |
︙ | ︙ | |||
1270 1271 1272 1273 1274 1275 1276 | /* ** Make sure we can call this stuff from C++. */ #ifdef __cplusplus } #endif | | | 1270 1271 1272 1273 1274 1275 1276 1277 | /* ** Make sure we can call this stuff from C++. */ #ifdef __cplusplus } #endif #endif /* !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) */ |