3278a312b0e8be0d11ad9dc57804c86e80968c18
[platform/core/api/notification.git] / include / notification_setting_service.h
1 /*
2  * Copyright (c) 2000 - 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 #ifndef __NOTIFICATION_SETTING_SERVICE_H__
18 #define __NOTIFICATION_SETTING_SERVICE_H__
19
20 #include <sys/types.h>
21 #include <notification.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 int notification_setting_db_set(const char *pkgname, const char *property, const char *value);
28 int notification_setting_db_get(const char *pkgname, const char *property, char **value);
29
30 int notification_setting_db_update(const char *package_name, int allow_to_notify, int do_not_disturb_except, int visibility_class, uid_t uid);
31 int notification_setting_db_update_system_setting(int do_not_disturb, int visibility_class, uid_t uid);
32
33 int noti_setting_service_get_setting_by_package_name(const char *package_name, notification_setting_h *setting, uid_t uid);
34 int noti_setting_get_setting_array(notification_setting_h *setting_array, int *count, uid_t uid);
35 int noti_system_setting_load_system_setting(notification_system_setting_h *system_setting, uid_t uid);
36
37 #ifdef __cplusplus
38 }
39 #endif
40 #endif /* __NOTIFICATION_SETTING_SERVICE_H__ */
41