sqlite3.h 814 B

123456789101112131415161718
  1. // Copyright 2020 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 THIRD_PARTY_SQLITE_DEV_SQLITE3_H_
  5. #define THIRD_PARTY_SQLITE_DEV_SQLITE3_H_
  6. // This is a shim header to include the right sqlite3 headers.
  7. // Use this instead of referencing sqlite3 headers directly.
  8. // We prefix chrome_ to SQLite's exported symbols, so that we don't clash with
  9. // other SQLite libraries loaded by the system libraries. This only matters when
  10. // using the component build, where our SQLite's symbols are visible to the
  11. // dynamic library loader.
  12. #include "third_party/sqlite/src/amalgamation_dev/rename_exports.h"
  13. #include "third_party/sqlite/src/amalgamation_dev/sqlite3.h"
  14. #endif // THIRD_PARTY_SQLITE_DEV_SQLITE3_H_