Just code reordering
[platform/core/multimedia/libmedia-service.git] / src / include / common / media-svc-noti.h
1 /*
2  * libmedia-service
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Hyunjun Ko <zzoon.ko@samsung.com>, Haejeong Kim <backto.kim@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef _MEDIA_SVC_NOTI_H_
23 #define _MEDIA_SVC_NOTI_H_
24
25 #include "media-svc-types.h"
26 #include "media-svc-env.h"
27 #include "media-svc-debug.h"
28 #include <media-util-noti.h>
29
30 typedef struct _media_svc_noti_item media_svc_noti_item;
31
32 struct _media_svc_noti_item {
33         int pid;
34         media_item_type_e update_item;
35         media_item_update_type_e update_type;
36         media_type_e media_type;
37         char *media_uuid;
38         char *path;
39         char *mime_type;
40 };
41
42 void _media_svc_set_noti_from_pid(int pid);
43 int _media_svc_create_noti_list(int count);
44 int _media_svc_insert_item_to_noti_list(media_svc_content_info_s *content_info, int cnt);
45 int _media_svc_destroy_noti_list(int all_cnt);
46 int _media_svc_publish_noti_list(int all_cnt);
47
48 #if 0
49 int _media_svc_create_noti_item(media_svc_content_info_s *content_info,
50                                                         int pid,
51                                                         media_item_type_e update_item,
52                                                         media_item_update_type_e update_type,
53                                                         media_svc_noti_item **item);
54
55 #endif
56 int _media_svc_destroy_noti_item(media_svc_noti_item *item);
57
58 int _media_svc_publish_noti(media_item_type_e update_item,
59                                                         media_item_update_type_e update_type,
60                                                         const char *path,
61                                                         media_type_e media_type,
62                                                         const char *uuid,
63                                                         const char *mime_type
64 );
65
66 #endif /*_MEDIA_SVC_NOTI_H_*/
67