From bb16e272b2e11deb209806619571d5128529920f Mon Sep 17 00:00:00 2001 From: libaoping Date: Mon, 22 Aug 2022 10:49:26 +0800 Subject: [PATCH] fix:Rectification of the inconsistency between the syscap definition and the components in the SDK Signed-off-by: libaoping --- include/syscap_define.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/syscap_define.h b/include/syscap_define.h index 225e089..b690733 100644 --- a/include/syscap_define.h +++ b/include/syscap_define.h @@ -214,6 +214,7 @@ typedef enum SystemCapabilityNum { WEB_WEBVIEW_CORE, GRAPHIC_GRAPHIC2D_COLOR_MANAGER_CORE, WINDOWMANAGER_WINDOWMANAGER_CORE, + COMMUNICATION_IPC_CORE, // Add here SYSCAP_NUM_MAX = 960 } SyscapNum; @@ -405,6 +406,7 @@ const static SyscapWithNum g_arraySyscap[] = { {"SystemCapability.Web.Webview.Core", WEB_WEBVIEW_CORE}, {"SystemCapability.Graphic.Graphic2D.ColorManager.Core", GRAPHIC_GRAPHIC2D_COLOR_MANAGER_CORE}, {"SystemCapability.WindowManager.WindowManager.Core", WINDOWMANAGER_WINDOWMANAGER_CORE}, + {"SystemCapability.Communication.IPC.Core", COMMUNICATION_IPC_CORE}, }; #endif // _SYSCAP_DEFINE_H -- Gitee