From 353aef0c8c1f5117b1c5db7491c57066bd315ecd Mon Sep 17 00:00:00 2001 From: libaoping Date: Mon, 22 Aug 2022 17:13:11 +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 50972c6..c28f350 100644 --- a/include/syscap_define.h +++ b/include/syscap_define.h @@ -224,6 +224,7 @@ typedef enum SystemCapabilityNum { MULTIMODALINPUT_INPUT_INPUTSIMULATOR, MULTIMODALINPUT_INPUT_INPUTMONITOR, MULTIMODALINPUT_INPUT_POINTER, + COMMUNICATION_IPC_CORE, // Add here SYSCAP_NUM_MAX = 960 } SyscapNum; @@ -421,6 +422,7 @@ const static SyscapWithNum g_arraySyscap[] = { {"SystemCapability.MultimodalInput.Input.InputSimulator", MULTIMODALINPUT_INPUT_INPUTSIMULATOR}, {"SystemCapability.MultimodalInput.Input.InputMonitor", MULTIMODALINPUT_INPUT_INPUTMONITOR}, {"SystemCapability.MultimodalInput.Input.Pointer", MULTIMODALINPUT_INPUT_POINTER}, + {"SystemCapability.Communication.IPC.Core", COMMUNICATION_IPC_CORE}, }; #ifdef __cplusplus -- Gitee