Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch disused-link-macros Excluding Merge-Ins
This is equivalent to a diff from ab1550a608 to f14d357159
2021-07-09
| ||
23:12 | Clarify comment on sqlite3.h's interface decaration macros. (check-in: 7cb09aef49 user: larrybr tags: trunk) | |
16:00 | Remove disused linkage macros. (Leaf check-in: f14d357159 user: drh tags: disused-link-macros) | |
14:59 | Fix an assert() that might fail if sqlite3_create_function_v2() is invoked with NULL xStep and xFinal callbacks and a non-NULL xDestroy. (check-in: ab1550a608 user: dan tags: trunk) | |
13:52 | Enhance the sqlite3_create_function() interfaces to assume a value of SQLITE_UTF8 is presented with a nonsense value for the preferred encoding. This is undocumented behavior added for robustness. (check-in: c1bb5cff52 user: drh tags: trunk) | |
Changes to src/sqlite.h.in.
︙ | ︙ | |||
50 51 52 53 54 55 56 | #endif #ifndef SQLITE_API # define SQLITE_API #endif #ifndef SQLITE_CDECL # define SQLITE_CDECL #endif | < < < < < < < < < < < < | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | #endif #ifndef SQLITE_API # define SQLITE_API #endif #ifndef SQLITE_CDECL # define SQLITE_CDECL #endif /* ** These no-op macros are used in front of interfaces to mark those ** interfaces as either deprecated or experimental. New applications ** should not use deprecated interfaces - they are supported for backwards ** compatibility only. Application writers should be aware that ** experimental interfaces are subject to change in point releases. |
︙ | ︙ |