Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use quotes instead of angle-brackets to include sqlite3.h from sqlite3ota.h. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | ota-update |
Files: | files | file ages | folders |
SHA1: |
fce9c6ccf101d28492a84b85463433f3 |
User & Date: | dan 2014-09-18 16:38:10.149 |
Context
2014-09-18
| ||
17:57 | Update the ota extension to support SQLITE_ENABLE_8_3_NAMES builds. (check-in: 718da6de87 user: dan tags: ota-update) | |
16:38 | Use quotes instead of angle-brackets to include sqlite3.h from sqlite3ota.h. (check-in: fce9c6ccf1 user: dan tags: ota-update) | |
15:57 | Remove some c++isms from sqlite3ota.c. (check-in: 0da1862b1b user: dan tags: ota-update) | |
Changes
Changes to ext/ota/sqlite3ota.h.
︙ | ︙ | |||
164 165 166 167 168 169 170 | ** to its original contents, it is sufficient to drop all tables that begin ** with the prefix "ota_" */ #ifndef _SQLITE3OTA_H #define _SQLITE3OTA_H | | | 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | ** to its original contents, it is sufficient to drop all tables that begin ** with the prefix "ota_" */ #ifndef _SQLITE3OTA_H #define _SQLITE3OTA_H #include "sqlite3.h" /* Required for error code definitions */ typedef struct sqlite3ota sqlite3ota; /* ** Open an OTA handle. ** ** Argument zTarget is the path to the target database. Argument zOta is |
︙ | ︙ |