Tizen 2.0 Release
[apps/core/preloaded/myfiles.git] / src / include / mf-s-beam.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
19 #ifndef __MF_S_BEAM_H__
20 #define __MF_S_BEAM_H__
21
22 #include "mf-main.h"
23
24 typedef void (*Mf_Sbeam_Cb)(void *user_data);
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 bool mf_sbeam_init();
31 void mf_sbeam_finalize();
32 bool mf_sbeam_enable();
33 bool mf_sbeam_disable();
34 bool mf_sbeam_set_callback(Mf_Sbeam_Cb callback, void *user_data);
35 bool mf_sbeam_share_files(Evas_Object *win, Eina_List *file_list);
36
37 #ifdef __cplusplus
38 }
39 #endif
40
41
42 #endif /* __MF_S_BEAM_H__ */
43