X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2FTizen.Applications.NotificationEventListener%2FInterop%2FInterop.NotificationEventListener.cs;h=255be6dcc2388f92296451e71e1dfc42b0c932b7;hb=55478d7ce098a2e01e8238ecce12d8c26e8464ba;hp=1e8b41323f472aa8b4626cc23160c5bc7248ae87;hpb=b60d5fc9b0fdc923893d7434cba320fd69653e3a;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git diff --git a/src/Tizen.Applications.NotificationEventListener/Interop/Interop.NotificationEventListener.cs b/src/Tizen.Applications.NotificationEventListener/Interop/Interop.NotificationEventListener.cs index 1e8b413..255be6d 100755 --- a/src/Tizen.Applications.NotificationEventListener/Interop/Interop.NotificationEventListener.cs +++ b/src/Tizen.Applications.NotificationEventListener/Interop/Interop.NotificationEventListener.cs @@ -138,7 +138,7 @@ internal static partial class Interop [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_property")] internal static extern ErrorCode GetProperties(NotificationSafeHandle handle, out int flags); - [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_extention_data")] + [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_extension_data")] internal static extern ErrorCode GetExtender(NotificationSafeHandle handle, string key, out SafeBundleHandle value); [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_clone")] @@ -148,7 +148,7 @@ internal static partial class Interop internal static extern ErrorCode NotificationListFree(IntPtr list); [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_args")] - internal static extern ErrorCode GetExtentionBundle(NotificationSafeHandle handle, out IntPtr args, out IntPtr groupArgs); + internal static extern ErrorCode GetExtensionBundle(NotificationSafeHandle handle, out IntPtr args, out IntPtr groupArgs); [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_hide_timeout")] internal static extern ErrorCode GetHideTimeout(NotificationSafeHandle handle, out int timeout); @@ -162,6 +162,15 @@ internal static partial class Interop [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_default_button")] internal static extern ErrorCode GetDefaultButton(NotificationSafeHandle handle, out int index); + [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_extension_event_handler")] + internal static extern ErrorCode GetExtensionAction(NotificationSafeHandle handle, UserEventType type, out SafeAppControlHandle appcontrol); + + [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_load")] + internal static extern IntPtr LoadNotification(string appID, int uniqueID); + + [DllImport(Libraries.NotificationEventListener, EntryPoint = "notification_get_all_count")] + internal static extern ErrorCode GetAllCount(NotificationType type, out int count); + internal static ErrorCode GetAppId(NotificationSafeHandle handle, out string appid) { ErrorCode err;