Merge "code sync with platform/core/csapi/sync-manager"
[platform/core/csapi/tizenfx.git] / src / Tizen.Content.MediaContent / Interop / Interop.Storage.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 using System;
18 using System.Runtime.InteropServices;
19 using Tizen.Content.MediaContent;
20
21 internal static partial class Interop
22 {
23     internal static class Storage
24     {
25         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_get_storage_info_from_db")]
26         internal static extern MediaContentError GetStorageInfoFromDb(string id, out IntPtr storage);
27
28         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_get_storage_count_from_db")]
29         internal static extern MediaContentError GetStorageCountFromDb(FilterHandle filter, out int count);
30
31         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_get_media_count_from_db")]
32         internal static extern MediaContentError GetMediaCountFromDb(string id, FilterHandle filter, out int count);
33
34         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_destroy")]
35         internal static extern MediaContentError Destroy(IntPtr storage);
36
37         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_get_id")]
38         internal static extern MediaContentError GetId(IntPtr storage, out IntPtr id);
39
40         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_get_path")]
41         internal static extern MediaContentError GetPath(IntPtr storage, out IntPtr path);
42
43         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_get_type")]
44         internal static extern MediaContentError GetType(IntPtr storage, out StorageType type);
45
46         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_foreach_storage_from_db")]
47         internal static extern MediaContentError ForeachStorageFromDb(FilterHandle filter, Common.ItemCallback callback,
48             IntPtr userData = default(IntPtr));
49
50         [DllImport(Libraries.MediaContent, EntryPoint = "media_storage_foreach_media_from_db")]
51         internal static extern MediaContentError ForeachMediaFromDb(string id, FilterHandle filter,
52             Common.ItemCallback callback, IntPtr userData = default(IntPtr));
53     }
54 }