wlan_plat/wlan_info_api/inc/wlaninternalpskeys.h
changeset 0 c40eb8fe8501
child 3 6524e815f76f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wlan_plat/wlan_info_api/inc/wlaninternalpskeys.h	Tue Feb 02 02:03:13 2010 +0200
@@ -0,0 +1,66 @@
+/*
+* Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  WLAN event enumerations and uid:s for Publish And Subscribe.
+*                PubSub clients can include this file and listen to these events.
+*                These events will be routed through Publish And Subscribe.
+*
+*/
+
+/*
+* %version: 5 %
+*/
+
+#ifndef WLANINTERNALPSKEYS_H
+#define WLANINTERNALPSKEYS_H
+
+#include "wlansdkpskeys.h"
+
+// LOCAL CONSTANTS
+const TInt KPSWlanEnumerationFirstValue = 0;
+
+/**
+* P&S category WLAN information defined in wlansdkpskeys.h
+*/
+
+
+/**
+* WLAN indicator
+*/
+const TUint KPSWlanIndicator = 0x00000002;
+const RProperty::TType KPSWlanIndicatorType = RProperty::EInt;
+
+/**
+* The possible WLAN indicator values
+* These values correspond to the WLAN icon statuses
+*/
+enum TPSWlanIndicator
+    {
+    /** No WLAN connection or WLAN availability, WLAN not in use */ 
+    EPSWlanIndicatorNone = KPSWlanEnumerationFirstValue,
+    /** 
+    * The device has been set to scan for WLANs, and a WLAN is available. 
+    * That is, the device has been set to show WLAN availability from
+    * Tools->Settings->Connection->Wireless LAN->Show WLAN availability and if
+    * WLAN is available, this indicator value is used.
+    */
+    EPSWlanIndicatorAvailable,
+    /** A WLAN connection is active in a network that does not have encryption. */
+    EPSWlanIndicatorActive,
+    /** A WLAN connection is active in a network that has encryption. */
+    EPSWlanIndicatorActiveSecure
+    };
+
+#endif // WLANINTERNALPSKEYS_H
+           
+//  End of File