btobjectexchange.pan

来自「symbian平台蓝牙程序,功能实现:搜索设备,指定时间间隔搜索,对指定的设备发」· PAN 代码 · 共 35 行

PAN
35
字号
/* Copyright (c) 2002, Nokia Mobile Phones. All rights reserved */

#ifndef __BTOBJECTEXCHANGE_PAN__
#define __BTOBJECTEXCHANGE_PAN__

#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
    };

inline void Panic(TBTObjectExchangePanics aReason)
    { 
    User::Panic(_L("BTOBEX"), aReason);
    }

#endif // __BTOBJECTEXCHANGE_PAN__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?