summaryrefslogtreecommitdiffstats
path: root/chromium/sql/recover_module/module.h
blob: a4d40ee4cd879799602f10be05f5c3b63e727d5a (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
// 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_