Stops capturing fingerprint images from the supplied fingerprint reader.
| Prerequisites | The capture module must have been previously initialized. Image capture must have been previously started on the supplied fingerprint reader. |
| Return | On success, GR_OK is returned. On failure, the appropriate error code is returned. |
| [in] idSensor |
The ID of the fingerprint reader to stop capturing images from. |
C++
int GrCapStopCapture (string idSensor)
Delphi
Function GrCapStopCapture(const idSensor: WideString): integer;
C++
if (event == GR_UNPLUG) {
// Stop capturing from the unplugged reader
GrCapStopCapture(idSensor);
}
Delphi
if (event = GR_UNPLUG) then
// Stop capturing from the unplugged reader.
GrCapStopCapture(idSensor);