tizen 2.3.1 release
[framework/system/libfeedback.git] / include / 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 DEVICED_PATH_HAPTIC                 DEVICED_OBJECT_PATH"/Haptic"
36 #define DEVICED_INTERFACE_HAPTIC            DEVICED_INTERFACE_NAME".haptic"
37
38 struct dbus_byte {
39         const unsigned char *data;
40         int size;
41 };
42
43 int dbus_method_sync(const char *dest, const char *path,
44                 const char *interface, const char *method,
45                 const char *sig, char *param[]);
46 #endif