📄 btrmtdevmgr.h
字号:
#ifndef _BOYIBT_H_INCLUDED#define _BOYIBT_H_INCLUDED#include "btcommon.h"// Remote Bluetooth Device Managementclass RmtDevMgr{public: static BtSdkRemoteDevicePropertyStru m_RmtDevInfo[MAX_REMOTE_DEV_NUM]; static int m_nRmtDevNum; static sem_t m_Sem; static bool m_bScanning; static bool Init(); static void Destroy(); static void* RmtDevMgrThread(void*); static void StartSearch(); static void GetBtList(); static BTDEVHDL FindRmtDevByAddr(const BTUINT8* bd_addr);private: RmtDevMgr(); RmtDevMgr(const RmtDevMgr& rhs); RmtDevMgr& operator =(const RmtDevMgr& rhs);};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -