12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef THIRD_PARTY_SQLITE_SQLITE3_H_
- #define THIRD_PARTY_SQLITE_SQLITE3_H_
- #include "third_party/sqlite/src/amalgamation/rename_exports.h"
- #if defined(SQLITE_OMIT_COMPLETE)
- #if defined(sqlite3_complete)
- #undef sqlite3_complete
- #else
- #error "This workaround is no longer needed."
- #endif
- #endif
- #if defined(SQLITE_OMIT_COMPILEOPTION_DIAGS)
- #if defined(sqlite3_compileoption_get)
- #undef sqlite3_compileoption_get
- #else
- #error "This workaround is no longer needed."
- #endif
- #if defined(sqlite3_compileoption_used)
- #undef sqlite3_compileoption_used
- #else
- #error "This workaround is no longer needed."
- #endif
- #endif
- #include "third_party/sqlite/src/amalgamation/sqlite3.h"
- #endif
|