mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-06 15:49:35 +03:00
Remove internal function sqlite3OsDefaultVfs(). The built-in VFS layers now register their VFS implementations by calling sqlite3_vfs_register() from within sqlite3_os_init(). (CVS 5307)
FossilOrigin-Name: 8fa33b79d7369ec5777fd9ad3349f0fa31b98fd6
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
*************************************************************************
|
||||
** Internal interface definitions for SQLite.
|
||||
**
|
||||
** @(#) $Id: sqliteInt.h,v 1.728 2008/06/25 14:26:08 danielk1977 Exp $
|
||||
** @(#) $Id: sqliteInt.h,v 1.729 2008/06/25 17:19:01 danielk1977 Exp $
|
||||
*/
|
||||
#ifndef _SQLITEINT_H_
|
||||
#define _SQLITEINT_H_
|
||||
@@ -1734,6 +1734,12 @@ typedef struct {
|
||||
** Structure containing global configuration data for the SQLite library.
|
||||
**
|
||||
** This structure also contains some state information.
|
||||
**
|
||||
** The Sqlite3Config.isInit variable indicates whether or not
|
||||
** sqlite3_initialize() has already been called or not. Initially, isInit
|
||||
** is 0. While sqlite3_initialize() is running, it is set to 1. After
|
||||
** sqlite3_initialize has successfully run, the Sqlite3Config.isInit variable
|
||||
** is set to 2. Calling sqlite3_shutdown() resets the value to 0.
|
||||
*/
|
||||
struct Sqlite3Config {
|
||||
int bMemstat; /* True to enable memory status */
|
||||
@@ -1750,6 +1756,7 @@ struct Sqlite3Config {
|
||||
void *pPage; /* Page cache memory */
|
||||
int szPage; /* Size of each page in pPage[] */
|
||||
int nPage; /* Number of pages in pPage[] */
|
||||
int isInit; /* Initialization state */
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user