[System.Feedback] Change feedback theme api name index to id
[platform/core/csapi/tizenfx.git] / src / Tizen.System.Feedback / Interop / Interop.Feedback.cs
index 6b3e572..0a4b4e8 100644 (file)
@@ -55,5 +55,17 @@ internal static partial class Interop
 
         [DllImport(Libraries.Feedback, EntryPoint = "feedback_is_supported_pattern")]
         internal static extern int IsSupportedPattern(FeedbackType type, int pattern, out bool supported);
+
+        [DllImport(Libraries.Feedback, EntryPoint = "feedback_get_count_of_theme_internal")]
+        internal static extern int GetCountOfThemeInternal(FeedbackType type, out uint countOfTheme);
+
+        [DllImport(Libraries.Feedback, EntryPoint = "feedback_get_theme_id_internal")]
+        internal static extern int GetThemeIdInternal(FeedbackType type, out uint idOfTheme);
+
+        [DllImport(Libraries.Feedback, EntryPoint = "feedback_set_theme_id_internal")]
+        internal static extern int SetThemeIdInternal(FeedbackType type, uint idOfTheme);
+
+        [DllImport(Libraries.Feedback, EntryPoint = "feedback_stop_type_internal")]
+        internal static extern int StopTypeInternal(FeedbackType type);
     }
 }