sync with private git. updated the license and the boilerplates
[apps/home/quickpanel.git] / daemon / service / noti_led.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (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.tizenopensource.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 #ifdef QP_SERVICE_NOTI_LED_ENABLE
18 #ifndef _QP_NOTI_LED_DEF_
19 #define _QP_NOTI_LED_DEF_
20
21 #include <notification.h>
22 #include <dd-led.h>
23 #include "quickpanel-ui.h"
24
25 #if !defined(VENDOR)
26 #define NOTI_LED_CALL_PKGNAME "com.samsung.call"
27 #define NOTI_LED_VTCALL_PKGNAME "com.samsung.vtmain"
28 #else
29 #define NOTI_LED_CALL_PKGNAME VENDOR".call"
30 #define NOTI_LED_VTCALL_PKGNAME VENDOR".vtmain"
31 #endif
32 #define NOTI_LED_MSG_PKGNAME "/usr/bin/msg-server"
33
34 void quickpanel_service_noti_led_on(notification_h noti);
35 void quickpanel_service_noti_led_off(notification_h noti);
36 void quickpanel_service_noti_init(void *data);
37 void quickpanel_service_noti_fini(void *data);
38
39 #endif
40 #endif