Remove dbus-glib-1 dependency
[platform/core/api/serial.git] / include / serial_private.h
1 /*
2  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
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 __TIZEN_NETWORK_SERIAL_PRIVATE_H__
18 #define __TIZEN_NETWORK_SERIAL_PRIVATE_H__
19
20 #include "serial.h"
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 /**
27  * @internal
28  * @brief Serial callback.
29  */
30         typedef struct _serial_event_s {
31                 const void *callback;
32                 void *user_data;
33         } serial_event_s;
34
35  /**
36   * @internal
37   * @brief Serial handle
38   */
39         typedef struct _serial_s {
40                 DBusConnection *client_bus;
41                 int client_socket;
42                 int g_watch_id;
43                 serial_event_s state_handler;
44                 serial_event_s data_handler;
45                 void *handle;
46         } serial_s;
47
48 /**
49  * @internal
50  * @brief dbus signal from socket server
51  */
52         typedef enum {
53                 SERIAL_CLOSED,                  /* Serial session closed */
54                 SERIAL_OPENED,                  /* Serial session opened */
55         } serial_event_e;
56
57 #ifdef __cplusplus
58 }
59 #endif
60 #endif                                                  /* __TIZEN_NETWORK_SERIAL_PRIVATE_H__ */