diff -r 000000000000 -r 29b1cd4cb562 bthci/bthci2/btpowercontrol/interface/btpowercontrol.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bthci/bthci2/btpowercontrol/interface/btpowercontrol.h Fri Jan 15 08:13:17 2010 +0200 @@ -0,0 +1,60 @@ +// Copyright (c) 2006-2009 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: +// + +/** + @file + @publishedPartner + @released +*/ + +#ifndef BTPOWERCONTROL_H +#define BTPOWERCONTROL_H + +#include +#include +#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS +#include +#endif + +class RHCIServerSession; + +NONSHARABLE_CLASS(RBTPowerControl) +/** API used for managing the power state of the controller + +*/ + { +public: + IMPORT_C RBTPowerControl(); + + IMPORT_C TInt Open(); + IMPORT_C void Close(); + + IMPORT_C void SetPower(TBTPowerState aState, TDes8* aDesc, TRequestStatus &aStatus); + IMPORT_C TInt GetPower(TBTPowerState& aState, TDes8* aDesc); + IMPORT_C void Cancel(); + +private: + RHCIServerSession* iHCIServerSession; + TUint32 iReserved; // Padding for possible future "per-copy" state. + }; + +_LIT(KBTPowerControlPanic, "BTPwrCtrlClient"); +enum TBTPowerControlPanic + { + EApiUsedWhenHandleIsNotOpen = 0, + EHandleIsAlreadyOpen = 1, + }; + +#endif // BTPOWERCONTROL_H