williamr@2: /* williamr@2: * Copyright (c) 2002-2007 Nokia Corporation and/or its subsidiary(-ies). williamr@2: * All rights reserved. williamr@2: * This component and the accompanying materials are made available williamr@4: * under the terms of "Eclipse Public License v1.0" williamr@2: * which accompanies this distribution, and is available williamr@4: * at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@2: * williamr@2: * Initial Contributors: williamr@2: * Nokia Corporation - initial contribution. williamr@2: * williamr@2: * Contributors: williamr@2: * williamr@2: * Description: WLAN event enumerations and uid:s for Publish And Subscribe. williamr@2: * PubSub clients can include this file and listen to these events. williamr@2: * These events will be routed through Publish And Subscribe. williamr@2: * williamr@2: */ williamr@2: williamr@4: /* williamr@4: * %version: 3 % williamr@4: */ williamr@2: williamr@2: #ifndef WLANSDKPSKEYS_H williamr@2: #define WLANSDKPSKEYS_H williamr@2: williamr@2: #include williamr@2: williamr@2: williamr@2: /** williamr@2: * P&S category WLAN information williamr@2: */ williamr@2: const TUid KPSUidWlan = { 0x101f8ec5 }; williamr@2: williamr@2: williamr@2: /** williamr@2: * WLAN MAC address williamr@2: * The MAC address array consists of 6 consecutive bytes which can be used williamr@2: * to produce the address in format XX:XX:XX:XX:XX:XX williamr@2: */ williamr@2: const TUint KPSWlanMacAddress = 0x00000001; williamr@2: const RProperty::TType KPSWlanMacAddressType = RProperty::EByteArray; williamr@2: williamr@2: /** williamr@2: * Length of the MAC address array williamr@2: */ williamr@2: const TUint KPSWlanMacAddressLength = 6; williamr@2: williamr@2: #endif // WLANSDKPSKEYS_H williamr@2: williamr@2: // End of File