KDb

sqliteicu.h
1/*
2** 2008 May 26
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
7** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
10**
11******************************************************************************
12**
13** This header file is used by programs that want to link against the
14** ICU extension. All it does is declare the sqlite3IcuInit() interface.
15*/
16
17#include "sqlite3ext.h"
18#include "kdb_sqlite_icu_export.h"
19
20#ifdef __cplusplus
21extern "C" {
22#endif /* __cplusplus */
23
24KDB_SQLITE_ICU_EXPORT int sqlite3IcuInit(sqlite3 *db);
25
26#if !defined SQLITE_CORE || !SQLITE_CORE
27KDB_SQLITE_ICU_EXPORT int sqlite3_extension_init(sqlite3 *db, char **pzErrMsg, const struct sqlite3_api_routines *pApi);
28#endif
29
30#ifdef __cplusplus
31} /* extern "C" */
32#endif /* __cplusplus */
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:20:59 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.