GetDLLVersion Method - neoVI API

This method returns the software version of the DLL.

int _stdcall icsneoGetDLLVersion();

Parameters

None.

Return Values

This function returns the version number of the API.

Remarks

None.

Examples

char szOut[200];

// get the DLL version and report it
wsprintf(szOut,TEXT("intrepidcs API DLL Version %d\n"), icsneoGetDLLVersion());
MessageBox(hWnd,szOut,TEXT("Message"),MB_ICONINFORMATION);

Last updated