From e25f3e440ed00d597a9802df68adedadb629d814 Mon Sep 17 00:00:00 2001 From: cheliequan <liequanche@126.com> Date: 星期五, 13 一月 2023 12:10:06 +0800 Subject: [PATCH] 1.增加获取系统授权接口 2.完善相机相关函数实现 3.优化内存释放 --- stack.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/stack.cpp b/stack.cpp index cde8f98..6484c61 100644 --- a/stack.cpp +++ b/stack.cpp @@ -6,6 +6,7 @@ bool dbapi_get_doing_stacks(void *handle, std::vector<protomsg::FileStack> & list) { const char *topic = DATA_URL_PREFIX("/fileStack/findAllDoingStacks"); - return true; + bool ret = bus_dbapi_get_list(handle, topic, list); + return ret; } -- Gitblit v1.8.0