~hkdb/geary/disco

« back to all changes in this revision

Viewing changes to src/sqlite3-unicodesn/fts3_unicodesn.h

  • Committer: hkdb
  • Date: 2019-09-26 19:40:48 UTC
  • Revision ID: hkdb@3df.io-20190926194048-n0vggm3yfo8p1ubr
Tags: upstream-3.32.2-disco
ImportĀ upstreamĀ versionĀ 3.32.2-disco

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _FTS3_UNICODE_SN_H
 
2
#define _FTS3_UNICODE_SN_H
 
3
 
 
4
#include "fts3_tokenizer.h"
 
5
 
 
6
#define TOKENIZER_NAME  "unicodesn"
 
7
 
 
8
#define UNICODE0_DLL_EXPORTED __attribute__((__visibility__("default")))
 
9
 
 
10
struct sqlite3_api_routines;
 
11
 
 
12
void sqlite3Fts3UnicodeSnTokenizer(sqlite3_tokenizer_module const **ppModule);
 
13
 
 
14
UNICODE0_DLL_EXPORTED int sqlite3_extension_init(
 
15
      sqlite3 *db,          /* The database connection */
 
16
      char **pzErrMsg,      /* Write error messages here */
 
17
      const struct sqlite3_api_routines *pApi  /* API methods */
 
18
      );
 
19
 
 
20
 
 
21
#endif /* _FTS3_UNICODE0_H */