1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/epoc32/include/bluetooth/btscoparams.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -0,0 +1,54 @@
1.4 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 +@file
1.21 +@internalTechnology
1.22 +@released
1.23 +*/
1.24 +
1.25 +#ifndef BTSCOPARAMS_H
1.26 +#define BTSCOPARAMS_H
1.27 +
1.28 +#include <btsyncbandwidth.h>
1.29 +
1.30 +/**
1.31 +@internalTechnology
1.32 +Used internally to hold eSCO link parameters. Not intended for use.
1.33 +WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
1.34 +*/
1.35 +NONSHARABLE_CLASS(TBTeSCOLinkParams)
1.36 + {
1.37 + public:
1.38 + TBTeSCOLinkParams() {};
1.39 + TBTeSCOLinkParams(TUint aBandwidth, TUint16 aCoding, TUint16 aLatency, TUint8 aRetransmission);
1.40 +
1.41 + TBTSyncBandwidth iBandwidth;
1.42 + TUint16 iCoding;
1.43 + TUint16 iLatency;
1.44 + TUint8 iRetransmissionEffort;
1.45 + };
1.46 +
1.47 +enum TSCOType
1.48 +/** Bluetooth link SCO type
1.49 +@internalTechnology
1.50 +WARNING: For internal use ONLY. Compatibility is not guaranteed in future releases.
1.51 +*/
1.52 + {
1.53 + ESCO=0x01, /*!< Synchronous Connection Oriented link */
1.54 + EeSCO=0x02 /*!< eSCO link */
1.55 + };
1.56 +
1.57 +#endif // BTSCOPARAMS_H