Modify feedback operation
[platform/core/system/libsvi.git] / src / dbus.h
1 /*
2  * feedback
3  *
4  * Copyright (c) 2012 - 2013 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19
20 #ifndef __DBUS_H__
21 #define __DBUS_H__
22
23 #include <dbus/dbus.h>
24
25 /*
26  * Device daemon
27  */
28 #define DEVICED_BUS_NAME                    "org.tizen.system.deviced"
29 #define DEVICED_OBJECT_PATH                 "/Org/Tizen/System/DeviceD"
30 #define DEVICED_INTERFACE_NAME              DEVICED_BUS_NAME
31 /* Led service: play/stop led operations about led */
32 #define DEVICED_PATH_LED                    DEVICED_OBJECT_PATH"/Led"
33 #define DEVICED_INTERFACE_LED               DEVICED_INTERFACE_NAME".Led"
34 /* Haptic service: operatioins about haptic */
35 #define VIBRATOR_BUS_NAME                    "org.tizen.system.vibrator"
36 #define VIBRATOR_OBJECT_PATH                 "/Org/Tizen/System/Vibrator"
37 #define VIBRATOR_INTERFACE_NAME              VIBRATOR_BUS_NAME
38 #define VIBRATOR_PATH_HAPTIC                 VIBRATOR_OBJECT_PATH"/Haptic"
39 #define VIBRATOR_INTERFACE_HAPTIC            VIBRATOR_INTERFACE_NAME".haptic"
40
41 struct dbus_byte {
42         const unsigned char *data;
43         int size;
44 };
45
46 int dbus_method_sync(const char *dest, const char *path,
47                 const char *interface, const char *method,
48                 const char *sig, char *param[]);
49 #endif