os/persistentdata/persistentstorage/sqlite3api/SQLite/fts3.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
/*
sl@0
     2
** 2006 Oct 10
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
******************************************************************************
sl@0
    12
**
sl@0
    13
** This header file is used by programs that want to link against the
sl@0
    14
** FTS3 library.  All it does is declare the sqlite3Fts3Init() interface.
sl@0
    15
*/
sl@0
    16
#include "sqlite3.h"
sl@0
    17
sl@0
    18
#ifdef __cplusplus
sl@0
    19
extern "C" {
sl@0
    20
#endif  /* __cplusplus */
sl@0
    21
sl@0
    22
int sqlite3Fts3Init(sqlite3 *db);
sl@0
    23
sl@0
    24
#ifdef __cplusplus
sl@0
    25
}  /* extern "C" */
sl@0
    26
#endif  /* __cplusplus */