blob: a4d40ee4cd879799602f10be05f5c3b63e727d5a [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SQL_RECOVER_MODULE_MODULE_H_
#define SQL_RECOVER_MODULE_MODULE_H_
struct sqlite3;
namespace sql {
namespace recover {
// Registers the "recover" virtual table with a SQLite connection.
//
// Returns a SQLite error code.
int RegisterRecoverExtension(sqlite3* db);
} // namespace recover
} // namespace sql
#endif // SQL_RECOVER_MODULE_MODULE_H_