• BlackBerry Dynamics
  • Runtime library for iOS applications
  • 12.0.1.79
sqlite3enc.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Visto Corporation dba Good Technology, 2011. All rights reserved.
3  */
4 
5 #include "sqlite3.h"
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 SQLITE_API int sqlite3enc_open(const char* filename, sqlite3** ppDb);
12 SQLITE_API int sqlite3enc_open_v2(const char *zFilename, sqlite3 **ppDb, int flags, const char *zVfs);
13 SQLITE_API int sqlite3enc_import(const char* srcFilename, const char* destFilename);
14 
15 #ifdef __cplusplus
16 }
17 #endif
sqlite3enc_open
SQLITE_API int sqlite3enc_open(const char *filename, sqlite3 **ppDb)
sqlite3enc_open_v2
SQLITE_API int sqlite3enc_open_v2(const char *zFilename, sqlite3 **ppDb, int flags, const char *zVfs)
sqlite3enc_import
SQLITE_API int sqlite3enc_import(const char *srcFilename, const char *destFilename)