forked from gyf304/sqlite3-fts5-html
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfts5-html.h
More file actions
41 lines (33 loc) · 745 Bytes
/
fts5-html.h
File metadata and controls
41 lines (33 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef SQLITE_FTS5_HTML_H
#define SQLITE_FTS5_HTML_H
#ifndef SQLITE_CORE
#include "sqlite3ext.h"
#else
#include "sqlite3.h"
#endif
#ifndef SQLITE_PRIVATE
#define SQLITE_PRIVATE static
#endif
#ifdef SQLITE_FTS5_HTML_STATIC
#define SQLITE_FTS5_HTML_API
#else
#ifdef _WIN32
#define SQLITE_FTS5_HTML_API __declspec(dllexport)
#else
#define SQLITE_FTS5_HTML_API
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef SQLITE_CORE
SQLITE_PRIVATE int sqlite3Fts5HtmlInit(sqlite3 *db);
#else
SQLITE_FTS5_HTML_API int
sqlite3_ftshtml_init(sqlite3 *db, char **pzErrMsg,
const sqlite3_api_routines *pApi);
#endif
#ifdef __cplusplus
} /* end of the 'extern "C"' block */
#endif
#endif /* ifndef SQLITE_FTS5_HTML_H */