www.pudn.com > S60_Platform_Bluetooth_OBEX_Example.rar > btobjectexchange.pan
/* Copyright (c) 2004, Nokia. All rights reserved */ #ifndef __BTOBJECTEXCHANGE_PAN__ #define __BTOBJECTEXCHANGE_PAN__ // INCLUDES #include/** BTObjectExchange application panic codes */ enum TBTObjectExchangePanics { EBTObjectExchangeBasicUi = 1, EBTObjectExchangeReceiverInvalidState, EBTObjectExchangeSenderExists, EBTObjectExchangeReceiverExists, EBTObjectExchangeSenderInvalidState, EBTObjectExchangeNoSender, EBTObjectExchangeAddMessage, EBTObjectExchangeNextRecordRequestComplete, EBTObjectExchangeAttributeRequestResult, EBTObjectExchangeAttributeRequestComplete, EBTObjectExchangeInvalidControlIndex, EBTObjectExchangeProtocolRead, EBTObjectExchangeAttributeRequest, EBTObjectExchangeSdpRecordDelete, EBTObjectExchangeUnexpectedState, EBTObjectExchangeUnexpectedLogicState }; /** Panic Category */ _LIT( KPanicBTOBEX, "BTOBEX" ); inline void Panic( TBTObjectExchangePanics aReason ) { User::Panic( KPanicBTOBEX, aReason ); } #endif // __BTOBJECTEXCHANGE_PAN__ // End of File