Your browser does not allow scripts
Please click here to view a static table of contents without scripts
FTID_GetDllVersion
Return to Introduction  Previous page  Next page
Returns the FTChipID DLL version number.

FTID_STATUS
FTID_GetDLLVersion
(LPSTR lpVersionBuffer, DWORD VersionBufferSize)




Parameters
lpVersionBuffer
Pointer to buffer that receives the version number string of the FTChipID DLL.
VersionBufferSize
Length of the buffer created for the DLL version number.




Return Value
FTID_SUCCESS if successful, otherwise the return value is one of the following FTID error codes:

   FTID_BUFFER_SIZE_TOO_SMALL
   FTID_PASSED_NULL_POINTER



Example

FTID_STATUS Status = FTID_SUCCESS;
char Version[100];

Status = FTID_GetDLLVersion(Version, 100);