blob: e00aaaf5cac1554b765e159c1a262b7bdbe47632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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_
|