btobjectexchange.pan
来自「This C++ code example provides a method 」· PAN 代码 · 共 44 行
PAN
44 行
/* Copyright (c) 2004, Nokia. All rights reserved */
#ifndef __BTOBJECTEXCHANGE_PAN__
#define __BTOBJECTEXCHANGE_PAN__
// INCLUDES
#include <e32std.h>
/** 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
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?