StopScan Event

Fired when the class stops scanning.

Syntax

ANSI (Cross Platform)
virtual int FireStopScan(BLEClientStopScanEventParams *e);
typedef struct {
int ErrorCode;
const char *ErrorDescription; int reserved; } BLEClientStopScanEventParams; Unicode (Windows) virtual INT FireStopScan(BLEClientStopScanEventParams *e);
typedef struct {
INT ErrorCode;
LPCWSTR ErrorDescription; INT reserved; } BLEClientStopScanEventParams;
#define EID_BLECLIENT_STOPSCAN 9

virtual INT IPWORKSBLE_CALL FireStopScan(INT &iErrorCode, LPSTR &lpszErrorDescription);

Remarks

This event is fired when the class stops scanning. If the scanning stopped due to an error, the ErrorCode and ErrorDescription parameters will be set accordingly; otherwise they will be 0 and empty string. Refer to the StopScanning method for more information.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks BLE 2020 C++ Edition - Version 20.0 [Build 8158]