docs

Home All functions Legacy functions Categories

vuAutoDetectCancelDeepScan

Clarion prototype

Prototype: vuAutoDetectCancelDeepScan(LONG InHandle), SIGNED, PROC, PASCAL, RAW, NAME(‘vuAutoDetectCancelDeepScan’)

Requests cancellation of an asynchronous deep autodetect job. Cancellation is cooperative and takes effect between autodetect stages and probe attempts.

Example (Clarion)

rc     LONG
handle LONG

handle = 1   ! Use the handle returned by vuAutoDetectStartDeepScan.
rc = vuAutoDetectCancelDeepScan(handle)

IF rc = 0
  MESSAGE('Deep scan was not canceled: ' & vuMailLastError())
END
Home All functions Legacy functions Categories