[refactoring] revise interface
[platform/core/api/system-settings.git] / src / sst_screen.h
1 /*
2  * Copyright (c) 2020 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 #pragma once
17
18 #include "sst_interface.h"
19
20 //set current path of the wallpaper
21 int sst_screen_set_home_wallpaper(sst_interface *iface, const char *value);
22 //set current path of the bg image of the lock screen
23 int sst_screen_set_lock_wallpaper(sst_interface *iface, const char *value);
24
25 int sst_screen_get_lockscreen(sst_interface *iface, char **value);
26 int sst_screen_set_lockscreen(sst_interface *iface, const char *app_id);
27 int sst_screen_set_backlight_time(sst_interface *iface, int value);
28