tizen 2.3.1 release
[framework/appfw/vconf-internal-keys.git] / include / vconf-internal-kies-via-wifi-keys.h
1 /*
2  * vconf-internal-keys
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Hakjoo Ko <hakjoo.ko@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef __VCONF_INTERNAL_KIES_VIA_WIFI_KEYS_H__
23 #define __VCONF_INTERNAL_KIES_VIA_WIFI_KEYS_H__
24
25 /**
26  * This file defines keys and values.
27  *
28  * @file        vconf-internal-kies-via-wifi-keys.h
29  * @defgroup    vconf_internal_kies_via_wifi_key Definitions of internal shared Keys for Kies via WiFi
30  * @ingroup     vconf_internal_key
31  * @author      injun.yang@samsung.com
32  * @version     0.1
33  * @brief       This file has the definitions of shared keys for Kies via WiFi \n
34  */
35
36 /* ========================== Kies via WiFi Keys & Values ============================ */
37 /**
38  * @internal
39  * @addtogroup vconf_internal_kies_via_wifi_key
40  * @{
41  * @brief Kies via WiFi Keys & Values\n
42  *        Maintainer : injun.yang@samsung.com
43  */
44
45
46 /**
47  * @brief Kies via WiFi auto connection status
48  *
49  * VCONFKEY_KIES_VIA_WIFI_AUTO_CONNECTION_OFF : Disabled \n
50  * VCONFKEY_KIES_VIA_WIFI_AUTO_CONNECTION_ON : Enabled \n
51  */
52 #define VCONFKEY_KIES_VIA_WIFI_AUTO_CONNECTION_STATUS "db/kies-via-wifi/auto-connection/status"
53 enum {
54  VCONFKEY_KIES_VIA_WIFI_AUTO_CONNECTION_OFF = 0,
55  VCONFKEY_KIES_VIA_WIFI_AUTO_CONNECTION_ON
56 };
57
58
59 /**
60  * @brief The name of connected device
61  *
62  * Value : the name of connected device to Kies
63  */
64 #define VCONFKEY_KIES_VIA_WIFI_CONNECTED_DEVICE_NAME "memory/private/ug-kies-via-wifi/connected_name"
65
66
67 /**
68  * @brief The uuid of connected device
69  *
70  * Value : the uuid of connected device to Kies
71  */
72 #define VCONFKEY_KIES_VIA_WIFI_CONNECTED_DEVICE_UUID "memory/private/ug-kies-via-wifi/connected_udn"
73
74
75 /**
76  * @}
77  */
78
79 #endif  /* __VCONF_INTERNAL_KIES_VIA_WIFI_KEYS_H__ */
80