From d4defbfc9564f7d51dde26a22e8d7e132a26b795 Mon Sep 17 00:00:00 2001 From: Chanwoo Choi Date: Thu, 17 Aug 2023 18:06:41 +0900 Subject: [PATCH] dbus-iface-system: Add event dbus interface of deviced Add new deviced dbus interface to broadcast the event id. [Detailed description of newly added dbus information] - DEVICED_PATH_EVENT "/Org/Tizen/System/DeviceD/Event" - DEVICED_INTERFACE_EVENT "org.tizen.system.deviced.Event" - DEVICED_SIGNAL_EVENT_ID "Id" Change-Id: I5a444639b64bb47ee10f32a092b9879850c26000 Signed-off-by: Chanwoo Choi --- include/libsyscommon/dbus-iface-system.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/libsyscommon/dbus-iface-system.h b/include/libsyscommon/dbus-iface-system.h index f14227d..52338d3 100644 --- a/include/libsyscommon/dbus-iface-system.h +++ b/include/libsyscommon/dbus-iface-system.h @@ -161,6 +161,11 @@ extern "C" { #define DEVICED_PATH_INPUT DEVICED_OBJECT_PATH"/Input" #define DEVICED_INTERFACE_INPUT DEVICED_INTERFACE_NAME".input" +/* Event service: To broadcast event values */ +#define DEVICED_PATH_EVENT DEVICED_OBJECT_PATH"/Event" +#define DEVICED_INTERFACE_EVENT DEVICED_INTERFACE_NAME".Event" +#define DEVICED_SIGNAL_EVENT_ID "Id" + /******************************************************************************* * * Storage daemon (storaged) -- 2.34.1