diff -r 30e048a7b597 -r bad0cc58d154 wlansecuritysettings/wifiprotectedsetup/inc/wifiparams.h --- a/wlansecuritysettings/wifiprotectedsetup/inc/wifiparams.h Thu Aug 19 09:58:27 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,72 +0,0 @@ -/* -* Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of the License "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: Declares the common used constants and types for Wi-Fi Protected Setup. -* -*/ - -/* -* %version: tr1cfwln#7 % -*/ - -#ifndef T_WIFIPARAMS_H -#define T_WIFIPARAMS_H - -#include -#include -#include - -namespace WiFiProt - { - struct TWiFiInputParams - { - // ssid of the network we want to configure - TWlanSsid iSSid; - // a flag to indicate that a connection is needed - // when setup is complete - TBool iConnectionNeeded; - // constructor to initialise input parameters data - inline TWiFiInputParams( const TDesC8& aInitBuf, - const TBool aConnectionNeeded ); - }; - - const TInt KMaxNumberOfUids = 30; //to be specified - - struct TWiFiOutputParams - { - // returned iapids of the configured connection methods - TBuf8 iIapIds; - // return value, see TWiFiReturn - TWiFiReturn iReturn; - // constructor to initialise output parameters data - inline TWiFiOutputParams( const TDesC8& aInitBuf ); - }; - - struct TWiFiConnOutputParams - { - // returned iapids of the configured connection methods - TWlanProtectedSetupCredentialAttribute iNetworkSettings; - // return value, see TWiFiReturn - TWiFiReturn iReturn; - // constructor to initialise output parameters data - inline TWiFiConnOutputParams( - const TWlanProtectedSetupCredentialAttribute& aNetworkSettings ); - // default constructor - inline TWiFiConnOutputParams( ); - }; - } -#include "wifiparams.inl" -#endif // T_WIFIPARAMS_H - - -// End of File