1#pragma once
2#include "extension_oote_headers.hpp"
3
4namespace duckdb{
5
6//! Looks through the CMake-generated list of extensions that are linked into DuckDB currently to try load <extension>
7bool TryLoadLinkedExtension(DuckDB &db, const std::string &extension) {
8
9
10
11 return false;
12}
13
14vector<string> OOT_EXTENSIONS = {};
15
16}
17