fts5_api

** Interfaces to extend FTS5.

  1. struct fts5_tokenizer
  2. enum FTS5_TOKENIZE_QUERY;
  3. enum FTS5_TOKENIZE_PREFIX;
  4. enum FTS5_TOKENIZE_DOCUMENT;
  5. enum FTS5_TOKENIZE_AUX;
  6. enum FTS5_TOKEN_COLOCATED;
  7. struct fts5_api
    extern (C) __gshared nothrow
    struct fts5_api {
    int iVersion;
    int function(fts5_api* pApi, const char* zName, void* pContext, fts5_tokenizer* pTokenizer, void function(void*) xDestroy) xCreateTokenizer;
    int function(fts5_api* pApi, const char* zName, void** ppContext, fts5_tokenizer* pTokenizer) xFindTokenizer;
    int function(fts5_api* pApi, const char* zName, void* pContext, fts5_extension_function xFunction, void function(void*) xDestroy) xCreateFunction;
    }

Meta

Suggestion Box / Bug Report