mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
This should update the master branch to use "DB Browser for SQLite" naming, and fix the problem with the uninstaller not showing up in Add/Remove programs on Windows (issue #742)
17 lines
257 B
C
17 lines
257 B
C
#ifndef SQLITE_H
|
|
#define SQLITE_H
|
|
|
|
#ifdef ENABLE_SQLCIPHER
|
|
#define SQLITE_TEMP_STORE 2
|
|
#define SQLITE_HAS_CODEC
|
|
#ifdef Q_OS_WIN32
|
|
#include <sqlite3.h>
|
|
#else
|
|
#include <sqlcipher/sqlite3.h>
|
|
#endif
|
|
#else
|
|
#include <sqlite3.h>
|
|
#endif
|
|
|
|
#endif
|