summaryrefslogtreecommitdiff
path: root/Tizen.Content/Interop/Interop.MediaBookmark.cs
diff options
context:
space:
mode:
authorPraveen Gattu <gattu.p@samsung.com>2016-05-25 17:53:34 +0530
committerPraveen Gattu <gattu.p@samsung.com>2016-05-30 16:01:36 +0530
commit2ab06a651a745942dd390f1cb5ac8628dfdf5007 (patch)
tree53ebc95d2958fd664f148aff62d2ec47a52ef68a /Tizen.Content/Interop/Interop.MediaBookmark.cs
parent363292b46e40a161720b15c15e29c0f6f7977c10 (diff)
downloadmedia-content-2ab06a651a745942dd390f1cb5ac8628dfdf5007.tar.gz
media-content-2ab06a651a745942dd390f1cb5ac8628dfdf5007.tar.bz2
media-content-2ab06a651a745942dd390f1cb5ac8628dfdf5007.zip
Fixed review comments and updated CSProj file.
Changed async apis.Incorporated SE review comments. Change-Id: I4a7e912839f33a310bc88460c4e9a6b6ee0f0391 Signed-off-by: Praveen Gattu <gattu.p@samsung.com>
Diffstat (limited to 'Tizen.Content/Interop/Interop.MediaBookmark.cs')
-rw-r--r--Tizen.Content/Interop/Interop.MediaBookmark.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tizen.Content/Interop/Interop.MediaBookmark.cs b/Tizen.Content/Interop/Interop.MediaBookmark.cs
index 629dcc4..cd67a4b 100644
--- a/Tizen.Content/Interop/Interop.MediaBookmark.cs
+++ b/Tizen.Content/Interop/Interop.MediaBookmark.cs
@@ -6,7 +6,7 @@ internal partial class Interop
internal static partial class MediaBookmark
{
[DllImport(Libraries.MediaContent, EntryPoint = "media_bookmark_insert_to_db")]
- internal static extern int InsertToDb(string media_id, uint time, string thumbnail_path);
+ internal static extern int InsertToDb(string media_id, DateTime time, string thumbnail_path);
[DllImport(Libraries.MediaContent, EntryPoint = "media_bookmark_delete_from_db")]
internal static extern int DeleteFromDb(int bookmark_id);
@@ -27,6 +27,6 @@ internal partial class Interop
internal static extern int GetMarkedTime(IntPtr bookmark, out uint marked_time);
[DllImport(Libraries.MediaContent, EntryPoint = "media_bookmark_get_thumbnail_path")]
- internal static extern int GetThumbnailPath(IntPtr bookmark, out string path);
+ internal static extern int GetThumbnailPath(IntPtr bookmark, out string filePath);
}
}