Griaule Biometrics

Home » Fingerprint SDK 2009 Developer's Manual » Programming Reference Guide » Fingerprint SDK DLL Reference Guide » Capture functions » GrCapStopCapture

GrCapStopCapture

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.

Parameters

[in] idSensor

The ID of the fingerprint reader to stop capturing images from.

Declaration

C++

int GrCapStopCapture (string idSensor)

Delphi

Function GrCapStopCapture(const idSensor: WideString): integer;

Sample Code

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);