Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Add typedefs for i16 and u8 to fts3Int.h when not building via the amalgamation method. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fa56c1c47296c2f9ba1de9450d421dd0 |
User & Date: | dan 2009-12-01 17:05:50.000 |
Context
2009-12-01
| ||
17:08 | Use #include "sqlite3.h" instead of <sqlite3.h> in fts3Int.h. (check-in: 7737db490c user: dan tags: trunk) | |
17:05 | Add typedefs for i16 and u8 to fts3Int.h when not building via the amalgamation method. (check-in: fa56c1c472 user: dan tags: trunk) | |
15:04 | Add tests for the remaining examples in fts3.in. (check-in: e381cd5229 user: dan tags: trunk) | |
Changes
Changes to ext/fts3/fts3Int.h.
︙ | ︙ | |||
56 57 58 59 60 61 62 63 64 65 66 67 68 69 | /* ** Macros indicating that conditional expressions are always true or ** false. */ #ifndef SQLITE_AMALGAMATION # define ALWAYS(x) (x) # define NEVER(X) (x) #endif typedef struct Fts3Table Fts3Table; typedef struct Fts3Cursor Fts3Cursor; typedef struct Fts3Expr Fts3Expr; typedef struct Fts3Phrase Fts3Phrase; typedef struct Fts3SegReader Fts3SegReader; | > > | 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | /* ** Macros indicating that conditional expressions are always true or ** false. */ #ifndef SQLITE_AMALGAMATION # define ALWAYS(x) (x) # define NEVER(X) (x) typedef unsigned char u8; /* 1-byte (or larger) unsigned integer */ typedef short int i16; /* 2-byte (or larger) signed integer */ #endif typedef struct Fts3Table Fts3Table; typedef struct Fts3Cursor Fts3Cursor; typedef struct Fts3Expr Fts3Expr; typedef struct Fts3Phrase Fts3Phrase; typedef struct Fts3SegReader Fts3SegReader; |
︙ | ︙ |