This commit is contained in:
Peter
2019-08-26 04:25:02 +04:00
parent dcfb6ddd9c
commit dbfb4eb8d9
150 changed files with 3946 additions and 522 deletions

View File

@@ -34,12 +34,13 @@
#define SQLITE3_H
#include <stdarg.h> /* Needed for the definition of va_list */
#if TARGET_OS_IOS
#include <sqlcipher/sqlcipher_config.h>
#else
#if TARGET_OS_OSX
#include <sqlciphermac/sqlcipher_config.h>
#else
#include <sqlcipher/sqlcipher_config.h>
#endif
/*
** Make sure we can call this stuff from C++.
*/

View File

@@ -18,10 +18,10 @@
#ifndef SQLITE3EXT_H
#define SQLITE3EXT_H
#if TARGET_OS_IOS
#include <sqlcipher/sqlite3.h>
#else
#if TARGET_OS_OSX
#include <sqlciphermac/sqlite3.h>
#else
#include <sqlcipher/sqlite3.h>
#endif
/*