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. |
| [in] context |
Context in which the enrollment will be started. |
C++
int __stdcall GrStartEnroll(int context);
Delphi
function GrStartEnroll(context: Integer): Integer; stdcall;
C++
int result;
result = GrStartEnroll(GR_DEFAULT_CONTEXT);
Delphi
Var
ret: Integer;
Begin
ret := GrStartEnroll(GR_DEFAULT_CONTEXT);
End;