btservicesearcher.pan

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

PAN
25
字号
/* Copyright (c) 2002, Nokia Mobile Phones. All rights reserved */
#ifndef __BTSERVICE_SEARCHER_PAN__
#define __BTSERVICE_SEARCHER_PAN__

#include <e32std.h>

/** BTServiceSearcher application panic codes */
enum TBTServiceSearcherPanics 
    {
    EBTServiceSearcherNextRecordRequestComplete = 1,
    EBTServiceSearcherAttributeRequestResult,
    EBTServiceSearcherAttributeRequestComplete,
    EBTServiceSearcherInvalidControlIndex,
    EBTServiceSearcherProtocolRead,
    EBTServiceSearcherAttributeRequest,
    EBTServiceSearcherSdpRecordDelete
    };

inline void Panic(TBTServiceSearcherPanics aReason)
    { 
    User::Panic(_L("ServiceSearcher"), aReason);
    }

#endif // __BTSERVICE_SEARCHER_PAN__

⌨️ 快捷键说明

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