Tizen 2.1 base
[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
18 #ifndef __TIZEN_NETWORK_SERIAL_PRIVATE_H__
19 #define __TIZEN_NETWORK_SERIAL_PRIVATE_H__
20
21 #include <dbus/dbus-glib.h>
22
23 #include "serial.h"
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 /**
30  * @internal
31  * @brief Serial callback.
32  */
33  typedef struct _serial_event_s
34  {
35          const void *callback;
36          void *user_data;
37  } serial_event_s;
38
39
40  /**
41   * @internal
42   * @brief Serial handle
43   */
44  typedef struct _serial_s{
45         DBusGConnection *client_bus;
46         int client_socket;
47         int g_watch_id;
48         serial_event_s state_handler;
49         serial_event_s data_handler;
50         void *handle;
51 }serial_s;
52
53 /**
54  * @internal
55  * @brief dbus signal from socket server
56  */
57 typedef enum {
58         SERIAL_CLOSED,          /* Serial session closed */
59         SERIAL_OPENED,          /* Serial session opened */
60 }serial_event_e;
61
62
63 #ifdef __cplusplus
64 }
65 #endif
66
67 #endif /* __TIZEN_NETWORK_SERIAL_PRIVATE_H__ */