Apply coding rule (BRC_M_EUS, SPC_M_OPR, SPC_M_KWD)
[platform/core/connectivity/zigbee-manager.git] / zigbee-daemon / zigbee-lib / include / zblib_driver_zcl_poll_control.h
index 3a8edd5..9a50887 100644 (file)
 
 /**< ZigBee 'ZCL poll control' driver operations */
 typedef struct {
-       gboolean (*check_in_response)(ZigBeeDriver *driver, guint request_id);
-       gboolean (*fast_poll_stop)(ZigBeeDriver *driver, guint request_id);
-       gboolean (*set_long_poll_interval)(ZigBeeDriver *driver, guint request_id);
-       gboolean (*set_short_poll_interval)(ZigBeeDriver *driver, guint request_id);
+       gboolean(*check_in_response) (ZigBeeDriver *driver, guint request_id);
+       gboolean(*fast_poll_stop) (ZigBeeDriver *driver, guint request_id);
+       gboolean(*set_long_poll_interval) (ZigBeeDriver *driver, guint request_id);
+       gboolean(*set_short_poll_interval) (ZigBeeDriver *driver, guint request_id);
 } ZblibDriverZclPollControlOps_t;
 
 /**< ZigBee 'ZCL poll control' ops IDs */
@@ -35,6 +35,11 @@ typedef enum {
        ZBLIB_ZCL_POLL_CONTROL_OPS_SET_SHORT_POLL_INTERVAL, /**< Set short poll interval */
 } ZblibZclPollControlOps_e;
 
+/**< ZigBee 'ZCL Poll Control' notification IDs */
+typedef enum {
+       ZBLIB_ZCL_POLL_CONTROL_NOTI_CHECKIN_RESPONSE = 1, /**< Checkin response notification */
+} ZblibZclPollControlNoti_e;
+
 /* ZigBee 'Zcl poll control' driver APIs */
 ZigBeeDriver *zblib_driver_zcl_poll_control_new(ZigBeePlugin *plugin,
        const gchar *driver_name,