1.1 --- a/epoc32/include/btsecmanclient.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,90 +0,0 @@
1.4 -// Copyright (c) 1999-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 the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.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 -#ifndef BTSECMANCLIENT_H
1.20 -#define BTSECMANCLIENT_H
1.21 -
1.22 -#include <btmanclient.h>
1.23 -
1.24 -/**
1.25 -@internalAll
1.26 -@released
1.27 -Struct used to transfer BT address to host resolver to indicate notification of event
1.28 -**/
1.29 -NONSHARABLE_CLASS(TBTHostResolverNotification)
1.30 - {
1.31 -public:
1.32 - TBTDevAddr iBDAddr;
1.33 - TInt iNotification;
1.34 - };
1.35 -
1.36 -/**
1.37 -@internalAll
1.38 -@released
1.39 -Struct used to transfer device information to host resolver.
1.40 -**/
1.41 -NONSHARABLE_CLASS(TBTHostResolverDeviceInfo)
1.42 - {
1.43 -public:
1.44 - TBTDevAddr iBDAddr;
1.45 - TUint8 iPageScanRepMode; /*!< Page Scan repetition mode of remote device*/
1.46 - TUint8 iPageScanMode; /*!< Page scan mode of remote device*/
1.47 - TUint16 iClockOffSet; /*!< clock off set of remote device*/
1.48 - };
1.49 -
1.50 -/**
1.51 -@internalAll
1.52 -@released
1.53 -Struct used to transfer new Juice information from host resolver client to server.
1.54 -Juice information contains data pertaining to
1.55 -**/
1.56 -NONSHARABLE_CLASS(TBTHostResolverNewJuice)
1.57 - {
1.58 -public:
1.59 - TBTDevAddr iBDAddr;
1.60 - TUint32 iPageScanRepMode; ///< Page Scan repetition mode of remote device
1.61 - TUint32 iPageScanMode; ///< Page scan mode of remote device
1.62 - TUint32 iClockOffSet; ///< clock off set of remote device
1.63 - };
1.64 -
1.65 -
1.66 -/**
1.67 -@internalAll
1.68 -@released
1.69 -Struct used to transfer new link key event params from client to server.
1.70 -**/
1.71 -NONSHARABLE_CLASS(TBTSecManNewLinkKeyParams)
1.72 - {
1.73 -public:
1.74 - TBTDevAddr iBDAddr;
1.75 - TBTLinkKey iLinkKey;
1.76 - };
1.77 -
1.78 -/**
1.79 -@internalAll
1.80 -@released
1.81 -Typedef'ed pckgbuf to send a TBTSecManNewLinkKeyParams object over IPC.
1.82 -*/
1.83 -typedef TPckgBuf<TBTSecManNewLinkKeyParams> TBTSecManNewLinkKeyParamsPckg;
1.84 -
1.85 -/**
1.86 -@internalAll
1.87 -@released
1.88 -Typedef'ed pckgbuf to send a TBTHostResolverNotification object over IPC.
1.89 -*/
1.90 -typedef TPckgBuf<TBTHostResolverNotification> TBTHostResolverNotificationPckg;
1.91 -
1.92 -
1.93 -#endif