From b71fa5a6b776b9718fdf5be502e29cb9c83caf3e Mon Sep 17 00:00:00 2001 From: lobty Date: Fri, 12 Jul 2024 10:53:57 +0800 Subject: [PATCH] add pluginLibs to StoreConfig Signed-off-by: lobty --- .../relational_store/include/relational_store.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/distributeddatamgr/relational_store/include/relational_store.h b/distributeddatamgr/relational_store/include/relational_store.h index ff8863e40..50849f5d6 100644 --- a/distributeddatamgr/relational_store/include/relational_store.h +++ b/distributeddatamgr/relational_store/include/relational_store.h @@ -135,6 +135,12 @@ typedef struct { * @since 11 */ int area; + /** + * Indicates the names of the shared library containing fts etc. + * + * @since 12 + */ + char* pluginLibs[16]; } OH_Rdb_Config; #pragma pack() -- Gitee