Griaule Biometrics

Home » Fingerprint SDK 2009 Developer's Manual » Programming Reference Guide » Fingerprint SDK DLL Reference Guide » Initialization and finalization functions » GrInitialize

GrInitialize

Initializes the Fingerprint SDK library, creates the default context and checks for a valid license on system.

Prerequisites A valid license must exist on system.

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

Declaration

C++

int __stdcall GrInitialize();

Delphi

function GrInitialize: Integer; stdcall;

Sample Code

C++

int result;
//Initialize the library
result = GrInitialize();

Delphi

// Initializing the library.
err := GrInitialize();