--- a/htiui/HtiCommPlugins/HtiBtCommPlugin/BtEngine/inc/BtSerialEngine.pan Tue Apr 27 16:38:40 2010 +0300
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,60 +0,0 @@
-/*
-* Copyright (c) 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: Bluetooth serial engine panic codes.
-*
-*/
-
-
-#ifndef __BTSERIALENGINE_PAN__
-#define __BTSERIALENGINE_PAN__
-
-#include <e32def.h>
-#include <e32std.h>
-
-/** Panic Categories */
-_LIT( KPanicSerialEngine, "BTSerialEngine" ); // All engine classes
-_LIT( KPanicBTServiceAdvertiser, "BTServiceAdvertiser" ); // only service advertiser
-
-
-enum TBTSerialEnginePanics
- {
- EBTPointToPointReceiverInvalidState = 1,
- EBTPointToPointSenderExists = 2,
- EBTPointToPointReceiverExists = 3,
- EBTPointToPointSenderInvalidState = 4,
- EBTPointToPointNoSender = 5,
- EBTPointToPointAddMessage = 6,
- EBTPointToPointNextRecordRequestComplete = 7,
- EBTPointToPointAttributeRequestResult = 8,
- EBTPointToPointAttributeRequestComplete = 9,
- EBTPointToPointProtocolRead = 10,
- EBTPointToPointAttributeRequest = 11,
- EBTPointToPointSdpRecordDelete = 12,
- EBTPointToPointServerStop = 13,
- EBTPointToPointInvalidLogicState = 14,
- EBTPointToPointUnableToDisconnect = 15,
-
- EBTSerialEngineReadSocketBadState = 16,
- EBTSerialEngineWriteSocketBadState = 17
- };
-
-inline void Panic( TBTSerialEnginePanics aReason )
- {
- User::Panic( KPanicSerialEngine, aReason );
- }
-
-
-#endif // __BTSERIALENGINE_PAN__
-
-// End of File