GetBioDataArray
Declaration
Delphi
procedure GetBioDataArray(var PadID: PIDType; var GMTS: GMTStampType; var nFrames: Integer; var Data: PDataFrame);
C/C++
SOPAD_API void SOPAD_getBioDataArray(SOPAD_PIDType pPadID, SOPAD_GMTStampType* pGMTS, int* pnFrames, LPVOID* ppBioDataArray);
Description
Important: this function is obsolete. Use GetBioDataArrayEx.
Use GetBioDataArrayItem to extract a single TDataFrame from the array.Â
Call clear FreeBioDataArray to free the memory used by the array.
Call ClearBiodata after you got the biodata with getBioData. Otherwise you will get the old biodata too if you call GetBioDataArray the next time.
Arguments
PadID
Output parameter. Signature pad identifier (not the same as the PadID used for decryption).
GMTStampType
Output parameter. Time of the signature (for those pads that support this feature).
nSamples
Output parameter. Number of frames.
Data, ppBioDataArray
Output parameter. Pointer to array filled with TDataFrame's.