Tizen 2.0 Release
[apps/core/preloaded/myfiles.git] / src / include / mf-share.h
1 /*
2  * Copyright 2013         Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.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://floralicense.org/license/
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
18 #ifndef __MF_SHARE_H__
19 #define __MF_SHARE_H__
20
21 #define SHARE_FILE_MODE_NORMAL          0x01
22 #define SHARE_FILE_MODE_IMAGE           0x02
23 #define SHARE_FILE_MODE_VIDEO           0x04
24 #define SHARE_FILE_MODE_MULTI_IMAGE     0x10
25 #define SHARE_FILE_MODE_MULTI_VIDEO     0x20
26 #define SHARE_FILE_MODE_OTHERS          0x40
27
28 typedef enum __share_mode_e share_mode_e;
29 enum __share_mode_e {
30         SHARE_MODE_NORMAL,
31         SHARE_MODE_IMAGE,
32         SHARE_MODE_IMAGE_VIDEO,
33         SHARE_MODE_VIDEO,
34         SHARE_MODE_MULTI_IMAGE,
35         SHARE_MODE_MULTI_VIDEO,
36         SHARE_MODE_MAX
37 };
38
39 void mf_share_launch_multi_file(void *data);
40 int mf_share_mode_get(Eina_List * selected_list);
41
42 #endif