Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Omit the SQLITE_STDCALL and SQLITE_CDECL macros from the API documentation. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c0f3adb87d1fd192913146fd886ecb9e |
User & Date: | drh 2015-03-24 21:36:35.973 |
Context
2015-03-27
| ||
10:58 | Improved wording of a statement in the CREATE VIEW documentation. (check-in: 629e137c8d user: drh tags: trunk) | |
2015-03-24
| ||
21:36 | Omit the SQLITE_STDCALL and SQLITE_CDECL macros from the API documentation. (check-in: c0f3adb87d user: drh tags: trunk) | |
2015-03-23
| ||
20:07 | Add sqlite3_status64() to the change log. (check-in: 0f26ee931b user: drh tags: trunk) | |
Changes
Changes to pages/capi3ref.in.
︙ | |||
112 113 114 115 116 117 118 119 120 121 122 123 124 125 | 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | + + | # Reading in an interface definition. Stop reading at the first blank # line. # # Ignore API tags. regsub {^SQLITE_DEPRECATED } $line {} line regsub {^SQLITE_EXPERIMENTAL } $line {} line regsub {^SQLITE_API } $line {} line regsub {SQLITE_STDCALL } $line {} line regsub {SQLITE_CDECL } $line {} line if {$line==""} { set reqtag {} set reqdf {} if {[regexp {\{([AHLS]\d\d\d\d\d)\}} $title all reqtag]} { regsub { *\{[AHLS]\d\d\d\d\d\}} $title {} title while {[regexp {<([AHLS]\d\d\d\d\d)>} $title all df]} { append reqdf <$df> |
︙ |