module.h 526 B

123456789101112131415161718192021
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef SQL_RECOVER_MODULE_MODULE_H_
  5. #define SQL_RECOVER_MODULE_MODULE_H_
  6. struct sqlite3;
  7. namespace sql {
  8. namespace recover {
  9. // Registers the "recover" virtual table with a SQLite connection.
  10. //
  11. // Returns a SQLite error code.
  12. int RegisterRecoverExtension(sqlite3* db);
  13. } // namespace recover
  14. } // namespace sql
  15. #endif // SQL_RECOVER_MODULE_MODULE_H_