mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 6435d5aab611 (bug 858680)
This commit is contained in:
parent
bf75e66467
commit
b0b7c34b64
@ -51,7 +51,6 @@ EXPORTS
|
||||
sqlite3_create_function16
|
||||
sqlite3_create_module
|
||||
sqlite3_data_count
|
||||
sqlite3_dbstat_register
|
||||
sqlite3_db_filename
|
||||
sqlite3_db_handle
|
||||
sqlite3_db_mutex
|
||||
|
@ -62,10 +62,6 @@ PRLogModuleInfo* gStorageLog = nullptr;
|
||||
#define CHECK_MAINTHREAD_ABUSE() do { /* Nothing */ } while(0)
|
||||
#endif
|
||||
|
||||
extern "C" {
|
||||
int sqlite3_dbstat_register(sqlite3 *db);
|
||||
}
|
||||
|
||||
namespace mozilla {
|
||||
namespace storage {
|
||||
|
||||
@ -148,14 +144,7 @@ struct Module
|
||||
};
|
||||
|
||||
Module gModules[] = {
|
||||
{ "filesystem", RegisterFileSystemModule },
|
||||
{ "dbstat",
|
||||
[](sqlite3* aDatabase, const char* aName) -> int
|
||||
{
|
||||
MOZ_ASSERT(!strcmp(aName, "dbstat"));
|
||||
return sqlite3_dbstat_register(aDatabase);
|
||||
}
|
||||
}
|
||||
{ "filesystem", RegisterFileSystemModule }
|
||||
};
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user