New API set for 'heads-up notification'
[platform/core/api/notification.git] / src / notification.c
index 1ec0a8e..643a868 100755 (executable)
@@ -1412,6 +1412,16 @@ EXPORT_API int notification_get_launch_option(notification_h noti,
        return NOTIFICATION_ERROR_NONE;
 }
 
+EXPORT_API int notification_set_event_handler(notification_h noti, notification_event_type_e event_type, app_control_h event_handler)
+{
+       return NOTIFICATION_ERROR_NOT_SUPPORTED;
+}
+
+EXPORT_API int notification_get_event_handler(notification_h noti, notification_event_type_e event_type, app_control_h *event_handler)
+{
+       return NOTIFICATION_ERROR_NOT_SUPPORTED;
+}
+
 EXPORT_API int notification_set_execute_option(notification_h noti,
                                                                notification_execute_type_e type,
                                                                const char *text,
@@ -3123,4 +3133,4 @@ void notification_call_posted_toast_cb(const char *message)
        if (posted_toast_message_cb != NULL) {
                posted_toast_message_cb(message);
        }
-}
\ No newline at end of file
+}