Griaule Biometrics

Home » GrStartEnroll

GrStartEnroll

Starts the enrollment process. The fingerprint templates are consolidated to create a trustable one.

Prerequisites The Fingerprint SDK library must have been previously initialized.

Return On success, GR_OK is returned.
On failure, the appropriate error code is returned.

Parameters

[in] context

Context in which the enrollment will be started.

Declaration

C++

int __stdcall GrStartEnroll(int context);

Delphi

function GrStartEnroll(context: Integer): Integer; stdcall;

Sample Code

C++

int result;
result = GrStartEnroll(GR_DEFAULT_CONTEXT);

Delphi

Var
	ret: Integer;
Begin
	ret := GrStartEnroll(GR_DEFAULT_CONTEXT);
End;