From 52259a149f35b85d43b187f491db8eee23eff91e Mon Sep 17 00:00:00 2001 From: Zhang Qiang Date: Sat, 19 Jul 2025 06:52:13 +0000 Subject: [PATCH] add SDF_OpenDeviceWithConf Signed-off-by: Zhang Qiang --- include/SDF/sdf.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/SDF/sdf.h b/include/SDF/sdf.h index 3983124..b6c2d93 100644 --- a/include/SDF/sdf.h +++ b/include/SDF/sdf.h @@ -225,6 +225,8 @@ int SDF_OpenDevice(void **phDeviceHandle); int SDF_CloseDevice(void *hDeviceHandle); +int SDF_OpenDeviceWithConf(void **phDeviceHandle, const char* configFile); + int SDF_OpenSession(void *hDeviceHandle, void **phSessionHandle); int SDF_CloseSession(void *hSessionHandle); -- Gitee