aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/sqlite/sqlite3_fwd.h
blob: d44e88bf6c1c4f4b134bb1893fa82099f15b996e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#if defined(SQLITE_STATIC_LIBRARY) || defined(SQLITEC_STATIC_LIBRARY)
using sqlite3 = struct qtc_sqlite3;
using sqlite3_stmt = struct qtc_sqlite3_stmt;
using sqlite3_session = struct qtc_sqlite3_session;
using sqlite3_changeset_iter = struct qtc_sqlite3_changeset_iter;
#else
using sqlite3 = struct sqlite3;
using sqlite3_stmt = struct sqlite3_stmt;
using sqlite3_session = struct sqlite3_session;
using sqlite3_changeset_iter = struct sqlite3_changeset_iter;
#endif