bluetoothengine/btsac/inc/btsacdefs.h
changeset 0 f63038272f30
child 1 6a1fe72036e3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bluetoothengine/btsac/inc/btsacdefs.h	Mon Jan 18 20:28:57 2010 +0200
@@ -0,0 +1,76 @@
+/*
+* Copyright (c) 2006 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:  type declaration.
+*
+*/
+
+
+#ifndef BTSACDEFS_H
+#define BTSACDEFS_H
+
+const TInt KBTDevAddrReadable = KBTDevAddrSize * 2;
+
+const TUint8 KRequestNone 	  = 0x00; 
+const TUint8 KConnectReq 	  = 0x01; 
+const TUint8 KDisconnectReq	  = 0x02;
+const TUint8 KOpenAudioReq	  = 0x04;
+const TUint8 KCloseAudioReq	  = 0x08;
+const TUint8 KCompleteAllReqs = 0xff;
+
+
+const TInt KRequestIdWaitRemoteConfStart = 0xfffb;
+const TInt KRequestIdGavdpError = 0xfffc;
+const TInt KRequestIdTimer = 0xfffd;
+const TInt KRequestIdSelfComplete = 0xfffe;
+
+enum TBTConnType
+	{
+	EOutgoingConn,
+	EOutgoingConnNoDiscovery,
+	EOutgoingConnWithAudio,
+	EOutgoingConnWithAudioNoDiscovery,
+	EIncomingConn,
+	EConnExists
+	};
+
+enum TAudioOpenedBy
+	{
+	EAudioOpenedByNone,
+	EAudioOpenedByAFW,
+	EAudioOpenedByAcc	
+	};
+
+enum TStreamConfiguredBy
+	{
+	EStreamConfiguredBySrc,
+	EStreamConfiguredBySink
+	};
+
+enum TBTSACGavdpResetReason
+    {
+    EGavdpResetReasonNone,
+    EGavdpResetReasonGeneral,
+    EGavdpResetReasonCancelOpenAudio,
+    EGavdpResetReasonDisconnect  
+    };
+
+//Panic codes
+enum TBTPanicCode 
+    {
+	EBTPanicNullPointer = 33400,
+    EBTPanicSocketExists 
+    };
+    
+#endif      // BTSACDEFS_H
+            
\ No newline at end of file