Support multiple registration for HID device
[platform/core/connectivity/bluetooth-agent.git] / map-agent / bluetooth_map_email.h
1 /*
2  * Bluetooth-agent
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:  Hocheol Seo <hocheol.seo@samsung.com>
7  *               Girishashok Joshi <girish.joshi@samsung.com>
8  *               Chanyeol Park <chanyeol.park@samsung.com>
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *              http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  */
23
24 #ifndef __DEF_MAP_EMAIL_H_
25 #define __DEF_MAP_EMAIL_H_
26
27 #include <glib.h>
28 #include "bluetooth_map_types.h"
29 #include "map_bmessage.h"
30
31 gboolean _bt_map_start_email_service(void);
32
33 gboolean _bt_map_stop_email_service(void);
34
35 gboolean _bt_map_email_get_supported_folders(gboolean folders[FOLDER_COUNT][MSG_TYPES]);
36
37 gboolean _bt_map_get_email_list(char *folder, int max,
38                 guint8 subject_len, map_msg_filter_t *filter,
39                 GSList **email_list, guint64 *count, gboolean *newmsg);
40
41 gboolean _bt_map_update_mailbox(char *folder);
42
43 gboolean _bt_map_set_email_read_status(int mail_id, int read_status);
44
45 gboolean _bt_map_set_email_delete_status(int mail_id, int read_status);
46
47 gboolean _bt_map_get_email_message(int mail_id, gboolean attach,
48                 gboolean transcode, gboolean first_request, gchar **bmseg);
49
50 gboolean _bt_map_push_email_data(struct bmsg_data *bmsg_info,
51                 msg_send_option_t *option, char *folder);
52
53 #endif /* __DEF_MAP_EMAIL_H_ */